/** * @private */ export interface DictionaryInfo { } /** * @private */ export declare class Dictionary implements DictionaryInfo { private keysInternal; private valuesInternal; /** * @private */ readonly length: number; /** * @private */ readonly keys: K[]; /** * @private */ readonly values: V[]; /** * @private */ add(key: K, value: V): number; /** * @private */ get(key: K): V; /** * @private */ set(key: K, value: V): void; /** * @private */ remove(key: K): boolean; /** * @private */ containsKey(key: K): boolean; /** * @private */ clear(): void; /** * @private */ destroy(): void; }