/** * Helper functions for orchestrateIteration. * Extracted from orchestrateIteration.ts for max-lines compliance. */ import type { ReplayEngine } from "./replay/createReplayEngine"; import type { EffectAction, IterationMetadata, IterationResult } from "./types"; type WaitingIterationResult = Extract; /** @internal Exported for testing only. */ export declare function asWaitingResult(error: unknown): WaitingIterationResult | null; export declare function resolveNow(now?: Date | (() => Date)): () => Date; export declare function annotateWaitingActions(actions: EffectAction[]): EffectAction[]; export declare function createIterationMetadata(engine: ReplayEngine): IterationMetadata; export {}; //# sourceMappingURL=orchestrateHelpers.d.ts.map