import { IEnumerator } from "./type"; export declare class DictionaryUtil { static dictionaryCreate(capacity?: number): Map; static en(map: Map): Generator<{ key: string; value: any; }, void, unknown>; static dictionaryGetEnumerator(map: Map): IEnumerator; static dictionaryGetKeys(map: Map): IEnumerator; static dictionaryGetValues(map: Map): IEnumerator; static dictionaryGetDictionary(obj: any): Map; }