/**
 * Pauses the execution for a specified amount of time.
 * @param time The duration to sleep in milliseconds.
 */
export declare function sleep(time: number): Promise<unknown>;
