import { DefaultProxyHandler } from './default.proxy.handler';
import { type AbstractInterceptor } from './interceptors/abstract.interceptors';
/**
 * Create a new basic proxy which will access properties or methods of the target object and will
 * invoke a specific method on the target object if the method or property is no part of the target object.
 */
export declare class NoOpProxyHandler extends DefaultProxyHandler {
    protected interceptors(): AbstractInterceptor[];
}
