import { TestResponse } from './TestResponse.js'; /** * Build a {@link TestResponse} from explicit parts (no HTTP round-trip). */ export declare class MockResponse { /** * @param init - Status, headers, and JSON/text body. */ static toTestResponse(init: { status?: number; headers?: Record; body?: unknown; text?: string; }): TestResponse; } //# sourceMappingURL=MockResponse.d.ts.map