import type { InitConfig, Options } from './core'; export declare function get(url: string, options?: Omit, 'method' | 'url'>): import("./core").PromiseWrapper, import("./core").CustomResponseData, import("./core").ParsedError, import("./core").ParsedError | import("./core").CustomResponseData, import("./core").ParsedError<"timeout">, ""> & Promise>>; export declare function post(url: string, data: Record, options?: Omit, 'method' | 'url' | 'data'>): import("./core").PromiseWrapper, import("./core").CustomResponseData, import("./core").ParsedError, import("./core").ParsedError | import("./core").CustomResponseData, import("./core").ParsedError<"timeout">, ""> & Promise>>; export declare function postForm(url: string, data: FormData, options?: Omit, 'method' | 'url' | 'data'>): import("./core").PromiseWrapper, import("./core").CustomResponseData, import("./core").ParsedError, import("./core").ParsedError | import("./core").CustomResponseData, import("./core").ParsedError<"timeout">, ""> & Promise>>; export declare function put(url: string, data: Record, options?: Omit, 'method' | 'url' | 'data'>): import("./core").PromiseWrapper, import("./core").CustomResponseData, import("./core").ParsedError, import("./core").ParsedError | import("./core").CustomResponseData, import("./core").ParsedError<"timeout">, ""> & Promise>>; export declare function patch(url: string, data: Record, options?: Omit, 'method' | 'url' | 'data'>): import("./core").PromiseWrapper, import("./core").CustomResponseData, import("./core").ParsedError, import("./core").ParsedError | import("./core").CustomResponseData, import("./core").ParsedError<"timeout">, ""> & Promise>>; export declare function del(url: string, data: Record, options?: Omit, 'method' | 'url' | 'data'>): import("./core").PromiseWrapper, import("./core").CustomResponseData, import("./core").ParsedError, import("./core").ParsedError | import("./core").CustomResponseData, import("./core").ParsedError<"timeout">, ""> & Promise>>; export declare function setInitConfig(config: InitConfig): void; export type { InitConfig, Options, ParsedError, PromiseWrapper } from './core'; export declare const axiosStatic: import("axios").AxiosStatic; declare const _default: { get: typeof get; post: typeof post; postForm: typeof postForm; del: typeof del; put: typeof put; patch: typeof patch; setInitConfig: typeof setInitConfig; axiosStatic: import("axios").AxiosStatic; }; export default _default;