/** * objects - store mountpoints by string | Symbol * names - store name.toString() of a key to the key itself. In case of string key * the two is the same but in case the key is a Symbol then it map the Symbol.toString() * to the symbol itself. */ export declare class TxRegistry { objects: Map; names: Map; constructor(); add(name: K, object: T, prefix?: string): T; get(name: K, prefix?: string): T; has(name: K): boolean; del(name: K): void; getNames(): any[]; length(): number; }