/** * Wait using Promise * @param {number} ms - timeout period * @example * * async wait(500); * //=> setTimeout using 500ms */ export declare const wait: (ms: number) => Promise;