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