export type MockFetchResultArgs = { ok?: boolean; status?: number; json: T; }; /** Mock the next global.fetch result. */ export declare function mockNextFetchResult({ ok, status, json, }: MockFetchResultArgs): void;