import { IMap, ISet } from "./Util.js"; import { FSharpRef } from "./Types.js"; export declare function keyValueList(fields: Iterable, caseRule?: number): { [k: string]: any; }; export declare function containsValue(v: V, map: IMap): boolean; export declare function tryGetValue(map: IMap, key: K, defaultValue: FSharpRef): boolean; export declare function addToSet(v: T, set: ISet): boolean; export declare function addToDict(dict: IMap, k: K, v: V): void; export declare function getItemFromDict(map: IMap, key: K): V;