import { Config } from "./Config";
export interface RequestParams {
    url: string;
    method: string;
    baseURL: string | null;
    headers: any;
    params: any;
}
export interface ApiClientInstance {
    config: Config;
    makeRequest(req: RequestParams): Promise<any>;
}
