import type nodeDagnosticsChannel from "node:diagnostics_channel"; import { Channel } from "./channel.mjs"; export declare class TracingChannel< StoreType = unknown, ContextType extends object = object > implements nodeDagnosticsChannel.TracingChannel { readonly __unenv__: true; asyncEnd: Channel; asyncStart: Channel; end: Channel; error: Channel; start: Channel; constructor(nameOrChannels: string | nodeDagnosticsChannel.TracingChannelCollection); subscribe(handlers: nodeDagnosticsChannel.TracingChannelSubscribers): void; unsubscribe(handlers: nodeDagnosticsChannel.TracingChannelSubscribers): void; traceSync(); tracePromise(); traceCallback(); }