import { IFetchConfig } from '../interface/exported';
export declare class FetchClient {
private config;
constructor(config?: IFetchConfig);
setConfig(config: IFetchConfig): void;
getConfig(): IFetchConfig;
fetch(url: string, options: IFetchConfig): Promise<any>;
}