import InterceptorManager from './lib/Interceptor-manage'; import { IMedxResponse } from './interfaces/interfaces'; declare class IcsChromelyClient { private _baseAjaxUrl; isChromely: boolean; headers: { [key: string]: string; }; fetch: any; interceptors: { request: InterceptorManager; response: InterceptorManager>; }; constructor({ headers, fetch }?: { headers?: { [key: string]: string; }; fetch?: any; }); command(opts: { url: string; data?: any; }): Promise; function(opts: { url: string; method?: 'POST' | 'GET'; data?: any; headers?: { [key: string]: string; }; }): Promise; } declare const icsChromelyRequest: IcsChromelyClient; export default icsChromelyRequest;