export declare class TimeoutError extends Error { } export declare function waitForActionAsync({ action, interval, maxWaitTime, }: { action: () => T | Promise; interval?: number; maxWaitTime?: number; }): Promise;