import { OnSerializedRequest } from "../interfaces";
export interface IInterceptorOptions {
    onSerializedRequest: OnSerializedRequest;
    shouldBypassHost: (host: string) => boolean;
}
export declare type IInterceptorFactory = (options: IInterceptorOptions) => IInterceptor;
export interface IInterceptor {
    disable(): void;
}
//# sourceMappingURL=index.d.ts.map