import { IFetchOptions } from './IFetchOptions';
import { IFetchResponse } from './IFetchResponse';
export interface IFetchClient {
    tenant?: string;
    fetch(url: string, init?: IFetchOptions): Promise<IFetchResponse>;
    getFetchOptions(options?: IFetchOptions): IFetchOptions;
    getCometdHandshake(config?: any): any;
    getUrl(url: string, options?: IFetchOptions): string;
}
//# sourceMappingURL=IFetchClient.d.ts.map