/** * Pause the current execution environment for a period of time. * @param time - Pause duration in milliseconds. * @example * await sleep(1000); // Pause for 1 second */ export declare function sleep(time: number): Promise;