/** * Patches an existing response using a MockResponseSchema. */ import { MockResponseSchema } from '../protocol'; type RealResponse = { status: number; headers: Record; body: string; }; export type PatchResponseResult = { status: number; headers: Record; body: string | null; }; /** * Applies a MockResponseSchema's patches onto an already-received response. * Pure function — no side effects, no network, no Node.js APIs. */ export declare function patchResponse(resSchema: MockResponseSchema, realResponse: RealResponse, params?: Record): PatchResponseResult; export {}; //# sourceMappingURL=patch-response.d.ts.map