import { ClientService } from '../client/client.service'; import { IdentityService } from '../identity/identity.service'; import { RegistryService } from '../registry/registry.service'; import { DynamicModule } from '@nestjs/common'; export declare class PluginManagerService { private readonly clientService; private readonly identityService; private readonly registryService; constructor(clientService: ClientService, identityService: IdentityService, registryService: RegistryService); loadPlugin(packageName: string, options: Record): Promise; private registerPlugin; private ensurePluginDownloaded; }