import { Params, Method, ParamsType } from '../types'; export declare function checkUrl(url: string): void; export declare function makeParams(url: string, method: Method, params?: ParamsType): Params; export declare function makeBodyParams(url: string, method: Method, body?: any, params?: ParamsType): Params; interface ResponseCallback { response: Response; data?: any; } export declare function handleResponseCallback(response: Response): Promise; interface Resp { data?: any; } export declare function finalResponseIterceptor(response: Resp): Record | any; export {};