export declare class Registry {
    store: {
        [key: string]: any;
    };
    constructor();
    get(key: string): void;
    add(key: string, value: any): void;
    remove(key: string): void;
}
