/**
* 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.
*/exportdeclarefunctionwait(milliseconds: number): Promise<void>;