export declare class Dictionary { private _type; private items; private count; Clear(): void; ContainsKey(key: string): boolean; Count(): number; Add(key: string, value: T): void; Remove(key: string): T; Item(key: string): T; Keys(): string[]; Values(): T[]; toObject(): any; constructor(_type: new () => T); readonly type: T; }