export declare type Interceptor = (...args: any[]) => Promise | boolean; export declare function noop(): void; export declare function callInterceptor(options: { interceptor?: Interceptor; args?: any[]; done: () => void; canceled?: () => void; }): void;