import { Type } from '@nestjs/common'; import { ContextId, ModuleRef } from '@nestjs/core'; export declare class Injector { private moduleRef; constructor(moduleRef: ModuleRef); get(typeOrToken: Type | string | symbol): R; resolve(typeOrToken: Type | string | symbol, contextId?: ContextId): Promise; }