import { AbstractInterceptor, type PropertyKey } from './abstract.interceptors';
export declare class DefaultInterceptor extends AbstractInterceptor {
    private static _instance;
    intercept(obj: any, prop: PropertyKey): unknown;
    isApplicable(_obj: any, _prop: PropertyKey): boolean;
    static create(): DefaultInterceptor;
}
