/**
 * Pauses execution for a specified amount of time.
 *
 * @param {number} milliseconds - Amount of time to wait in milliseconds.
 * @returns {Promise<void>} A promise that resolves after specified time has passed.
 */
export declare function wait(milliseconds: number): Promise<void>;
