import * as xhrInterceptor from './xhrInterceptor';
import * as fetchInterceptor from './fetchInterceptor';
export interface Interceptors {
    XMLHttpRequest: typeof xhrInterceptor;
    fetch: typeof fetchInterceptor;
    http?: any;
    https?: any;
}
export declare const interceptors: Interceptors;
