File: /var/www/design.system/node_modules/msw/lib/core/getResponse.d.ts
import { R as RequestHandler } from './HttpResponse-Cy7ytzUn.js';
import '@mswjs/interceptors';
import './utils/internal/isIterable.js';
import './typeUtils.js';
/**
* Finds a response for the given request instance
* in the array of request handlers.
* @param handlers The array of request handlers.
* @param request The `Request` instance.
* @returns {Response} A mocked response, if any.
*/
declare const getResponse: (handlers: Array<RequestHandler>, request: Request) => Promise<Response | undefined>;
export { getResponse };