import type { AsyncExit } from "./AsyncExit"; import type { Async } from "./model"; export declare const sleep: (ms: number) => Async; export declare const delay_: (async: Async, ms: number) => Async; export declare const delay: (ms: number) => (async: Async) => Async; export declare const result: (async: Async) => Async>; export declare const onInterrupt_: ( async: Async, onInterrupted: () => Async ) => Async; export declare const onInterrupt: ( onInterrupted: () => Async ) => (async: Async) => Async; //# sourceMappingURL=combinators.d.ts.map