import { Request } from 'playwright'; import { FluentMock, WithMocksOptions } from './with-mocks'; export interface OutdatedMock { url: string; mock: Partial; actualResponse: string | unknown; mockedResponse: string | unknown; } /** * Get outdated mocks from the given unintercepted requests. * If a mock is found to be outdated and has provided a method to update its data source, * then the update method will be called, so that the mock can update itself the data source of the mocked response. * @export * @param {Partial[]} mocks * @param {Request[]} requests * @param {Partial} options * @param {unknown} [sharedContext={}] * @returns {Promise} */ export declare function getOutdatedMocks(mocks: Partial[], requests: Request[], options: Partial, sharedContext?: unknown): Promise;