import { AxiosRequestConfig, AxiosResponse } from 'axios'; type FetchClient = { get: , TSend = any>(url: string, config?: AxiosRequestConfig) => Promise; put: , TSend = any>(url: string, data?: TSend, config?: AxiosRequestConfig) => Promise; post: , TSend = any>(url: string, data?: TSend, config?: AxiosRequestConfig) => Promise; del: , TSend = any>(url: string, config?: AxiosRequestConfig) => Promise; }; declare const getFetchClient: (defaultOptions?: AxiosRequestConfig) => FetchClient; export { getFetchClient }; //# sourceMappingURL=getFetchClient.d.ts.map