import { DynamicModule } from '@nestjs/common'; import { Type } from '@nestjs/common/interfaces/type.interface'; export declare class ModuleTokenFactory { private readonly moduleIdsCache; create(metatype: Type, scope: Type[], dynamicModuleMetadata?: Partial | undefined): string; getDynamicMetadataToken(dynamicModuleMetadata: Partial | undefined): string; getScopeStack(scope: Type[]): string[]; getModuleId(metatype: Type): string; getModuleName(metatype: Type): string; private reflectScope; private replacer; }