/** * Sleep for a given number of milliseconds. Note that this method is async, * so please remember to call it with await, like `await sleep(1000);`. */ declare function sleep(ms: number): Promise; export { sleep };