export declare class Registry<T> {
    content: Record<string, T>;
    add(key: string, value: T): this;
    replace(key: string, value: T): this;
    get(key: string): T;
    contains(key: string): boolean;
    getAll(): T[];
    getKeys(): string[];
    remove(key: string): void;
}
