/** Small utility to create a promise that resolves in the given number of milliseconds */
export declare function sleep(ms: number): Promise<void>;
