export declare class InterceptorManager {
    private interceptors;
    use(interceptor: Function): () => void;
    execute(config: any): Promise<any>;
}
