declare function wait(timeoutMs: number, value?: any): Promise; declare function forTrue(fn: () => boolean): Promise; declare function timeoutAfter(timeoutMs: number, errorText: string): Promise; declare const WaitUtil: { wait: typeof wait; forTrue: typeof forTrue; timeoutAfter: typeof timeoutAfter; }; export default WaitUtil;