/// export declare class FetchResponse { status: number; response?: string | Blob | Record; headers: Headers; size: number; url: string; constructor(status: number, response?: string | Blob | Record, contentType?: string); text(): Promise; blob(): Promise | undefined>; } declare function mockFetch(): jest.MockedFunction<((input: RequestInfo | URL, init?: RequestInit | undefined) => Promise) & typeof globalThis.fetch & { resolve: (status: number, data?: string | Blob | Record, contentType?: string) => Promise; reject: (status: number | Error, data?: string | Blob | Record, contentType?: string) => Promise; }>; export default mockFetch;