type MockCfg = { url: string; method?: string; response?: unknown; status?: number; headers?: Record; }; export declare function mockFetch(...configs: MockCfg[]): () => void; export {};