declare const customApi: {
    post: ({ path, headers, ...options }: {
        path: string;
        headers?: any;
        [key: string]: any;
    }) => Promise<Response>;
    put: ({ path, headers, ...options }: {
        path: string;
        headers?: any;
        [key: string]: any;
    }) => Promise<Response>;
    get: ({ path, headers, ...options }: {
        path: string;
        headers?: any;
        [key: string]: any;
    }) => Promise<Response>;
};
export default customApi;
//# sourceMappingURL=fetcher.d.ts.map