interface ResourcesDict {
    [key: string]: any;
}
export declare class TypesStore {
    private static instance;
    private _types;
    private constructor();
    static getInstance(): TypesStore;
    static add(key: string, obj: any): void;
    static find(key: string): any;
    static all(): ResourcesDict;
    add(key: string, obj: any): void;
    find(key: string): any;
    readonly all: ResourcesDict;
}
export {};
