interface Timeout extends PromiseLike { clear?: () => void; } export declare const sleep: (ms: number) => Timeout; export {};