import type { Request, RequestPredicate, RequestWithUtcTimeInMs, Trigger } from '../../types/internal'; type Action = ((predicate: RequestPredicate, trigger: Trigger | undefined, options?: Options) => Promise>) & ((predicate: RequestPredicate, options?: Options) => Promise>); type Options = Readonly<{ skipLogs?: boolean; timeout?: number; }>; /** * Waits for some request (from browser) filtered by the request predicate. * If the function runs longer than the specified timeout, it is rejected. */ export declare const waitForRequest: Action; export {};