import type { WaitNodeConfig } from "./types.js"; /** Reserved transport name used by legacy durable delay records. */ export declare const INTERNAL_DELAY_EVENT_NAME = "__delay__"; /** Internal discriminator captured in definitions and persisted wait state. */ export declare const INTERNAL_WAIT_KIND_FIELD = "_waitKind"; export type DurableTimedWaitKind = "delay" | "event"; /** Read a captured definition marker, with legacy fallback for direct DAG callers. */ export declare function getConfiguredTimedWaitKind(config: WaitNodeConfig): DurableTimedWaitKind | undefined; //# sourceMappingURL=timed-wait-state.d.ts.map