import { ContainerizedDependency, Injection, IProxyDiContainer } from './types'; export declare const makeInjectionProxy: (injection: Injection, injectionOwner: ContainerizedDependency, container: IProxyDiContainer) => T; export declare function makeDependencyProxy(dependency: any): any; export declare function isInjectionProxy(value: any): boolean; export declare function isInstanceProxy(value: any): boolean;