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