import { type TraceOperation, type TraceSpan, type TracingPort } from "./index.js"; type MaybePromise = T | Promise; /** * Resolve a lazy application context inside a span when the runtime tracing * port is available independently from that context. */ export declare function runWithResolvedTracingContext(args: { tracing?: TracingPort; ctx: Ctx | (() => MaybePromise); operation: TraceOperation; run(ctx: Ctx, span?: TraceSpan): MaybePromise; }): Promise; export {}; //# sourceMappingURL=execution.d.ts.map