import { OnModuleInit } from '@nestjs/common'; import { PluginsTypeMapperService } from '../../../config/services/plugins-type-mapper.service'; import { ExtensionsService } from '../../../extensions/services/extensions.service'; import { SwaggerModelsRegistryService } from '../../../swagger/services/swagger-models-registry.service'; import { StorageService } from '../../services/storage.service'; export declare class MemoryPluginModule implements OnModuleInit { private readonly pluginsMapperService; private readonly swaggerRegistry; private readonly extensionsService; private readonly storageService; constructor(pluginsMapperService: PluginsTypeMapperService, swaggerRegistry: SwaggerModelsRegistryService, extensionsService: ExtensionsService, storageService: StorageService); onModuleInit(): void; }