import { config, bodyType } from "./types"; export declare const get: (url: string) => Promise; export declare const post: (url: string, body: bodyType) => Promise; export declare const put: (url: string, body: bodyType) => Promise; export declare const patch: (url: string, body: bodyType) => Promise; export declare const delete_: (url: string) => Promise; export declare const options: (url: string) => Promise; export declare const head: (url: string) => Promise; export declare const trace: (url: string) => Promise; export declare const configure: (config: config) => { [key: string]: any; }; declare const _default: { get: (url: string) => Promise; post: (url: string, body: bodyType) => Promise; put: (url: string, body: bodyType) => Promise; patch: (url: string, body: bodyType) => Promise; 'delete': (url: string) => Promise; options: (url: string) => Promise; head: (url: string) => Promise; trace: (url: string) => Promise; configure: (config: config) => { [key: string]: any; }; }; export default _default;