/** * 睡眠函数 * @param timer - 睡眠时间(ms) * @example * ```ts * await sleep(100) * ``` */ export declare function sleep(timer: number): Promise;