import { DynamicModule } from '@nestjs/common/interfaces/modules/dynamic-module.interface'; import { Type } from '@nestjs/common/interfaces/type.interface'; import { ModuleOpaqueKeyFactory } from './interfaces/module-opaque-key-factory.interface'; export declare class DeepHashedModuleOpaqueKeyFactory implements ModuleOpaqueKeyFactory { private readonly moduleIdsCache; private readonly moduleTokenCache; private readonly logger; createForStatic(moduleCls: Type): string; createForDynamic(moduleCls: Type, dynamicMetadata: Omit): string; getStringifiedOpaqueToken(opaqueToken: object | undefined): string; getModuleId(metatype: Type): string; getModuleName(metatype: Type): string; private hashString; private replacer; }