interface FakeResponseOptions { status?: number; text?: string; json?: unknown; url?: string; headers?: Record; } export declare const createFakeResponse: ({ status, text, json, url, headers, }: FakeResponseOptions) => Response; export {};