import { AxiosRequestConfig, AxiosInstance } from 'axios'; declare function createAxios(config?: AxiosRequestConfig): AxiosInstance; export default createAxios; export declare const Fetch: (url: string, params?: { method?: string; baseURL?: string; headers?: { [key: string]: any; }; body?: string; }) => Promise;