export type RuntimeFallbackTestClock = { readonly advanceBy: (ms: number) => Promise; readonly restore: () => void; }; export declare function installRuntimeFallbackTestClock(startAt?: number): RuntimeFallbackTestClock; export declare function restoreRuntimeFallbackTestClock(): void;