/** * Timeout Utility * * Wraps promises with a timeout to prevent indefinite hangs. * * @since v2.5.21 */ /** * Race a promise against a timeout. Rejects with a descriptive error * if the promise doesn't settle within timeoutMs. */ export declare function withTimeout(promise: Promise, timeoutMs: number, operation: string): Promise; //# sourceMappingURL=timeout.d.ts.map