import { ObjectSubstitute, OmitProxyMethods, DisabledSubstituteObject } from './Transformations'; export declare const HandlerKey: unique symbol; export declare const AreProxiesDisabledKey: unique symbol; export declare type SubstituteOf = ObjectSubstitute, T> & T; export declare class Substitute { static for(): SubstituteOf; static disableFor>>(substitute: T): DisabledSubstituteObject; }