import { NullableErrorResponse } from '../types'; interface FetchResponse extends NullableErrorResponse { data: T; } export declare const postFetch: (url: string, body: any, token?: string | null, extraHeaders?: HeadersInit) => Promise>; export declare const getFetch: (url: string, token?: string | null) => Promise>; export declare const deleteFetch: (url: string, body: any, token?: string | null, extraHeaders?: HeadersInit) => Promise>; export {}; //# sourceMappingURL=fetch.d.ts.map