import { InjectedValueProvider } from "../InjectedValueProvider"; import { Injector } from "../../Injector"; import { ClassType } from "../../../type"; /** * Forward request to another, existing injector mapping */ export declare class ExistingMappingProvider implements InjectedValueProvider { private injector; private type; constructor(injector: Injector, type: ClassType); getValue(): T; }