import { RegistryEntries } from './Registry'; export declare class RegistryMap { protected readonly map: Map; constructor(entries?: RegistryEntries); readonly keys: string[]; clear(): void; register(key: string, value: T): void; remove(key: string, value: T): void; reset(key: string): void; resolve(key: string): T[]; } //# sourceMappingURL=RegistryMap.d.ts.map