interface FetchOptions extends RequestInit { url: string; params?: Record; body?: any; bodyType?: string; } export type Params = Record; export type FetchResponse = { data: T; rawResponse: Response; }; declare const methods: Record(options: FetchOptions) => Promise>>; export default methods; //# sourceMappingURL=fetch.d.ts.map