export declare type FetchResponse = { status: number; text: () => Promise; }; export declare type SimpleFetch = (method: string, url: string, body: string | null, headers: Record) => Promise;