declare function wait(ms: number, timerUnref?: boolean): Promise<void>;
declare function waitWithAbort(ms: number, signal: AbortSignal | undefined | null, timerUnref?: boolean): Promise<void>;

export { wait, waitWithAbort };
