/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ import { Injector } from '@angular/core'; /** * Custom injector to be used when providing custom * injection tokens to components inside a portal. * @docs-private * @deprecated Use `Injector.create` instead. * @breaking-change 11.0.0 */ export declare class PortalInjector implements Injector { private _parentInjector; private _customTokens; constructor(_parentInjector: Injector, _customTokens: WeakMap); get(token: any, notFoundValue?: any): any; }