import { Provider } from './Provider'; import { Injector, InjectFlags } from '../Injector'; /** * Creates an alias provider for another provider in the same injector (or any of it's ancestors.) * Therefore, resolving this provider is the same as resolving the provider associated with the defined alias */ export declare class AliasProvider extends Provider { token: any; alias: any; flags: InjectFlags; readonly cacheable: boolean; constructor(token: any, alias: any, flags?: InjectFlags, scope?: number); resolve(injector: Injector): T; }