interface ToSelfDecorator { (): any; new (): ToSelfDecorator; } /** * Always initialize a new instance of that dependency instead of getting the cached instance from the injector. */ export declare const WithNew: ToSelfDecorator; export {};