export declare const TIMEOUT_ERROR: unique symbol; export declare function timeout(thenable: Promise, ms?: number | undefined): Promise; export declare function timeoutSafe(thenable: Promise): Promise; export declare function timeoutSafe(thenable: Promise, ms: number | undefined, fallback: T): Promise;