import { SquiggleSerializationVisitor } from "../serialization/squiggle.js"; import { Value } from "../value/index.js"; import { SerializedType } from "./serialize.js"; import { Type } from "./Type.js"; export declare class TDictWithArbitraryKeys extends Type { itemType: Type; constructor(itemType: Type); check(v: Value): boolean; serialize(visit: SquiggleSerializationVisitor): SerializedType; toString(): string; defaultFormInputCode(): string; defaultFormInputType(): "textArea"; } export declare function tDictWithArbitraryKeys(itemType: Type): TDictWithArbitraryKeys; //# sourceMappingURL=TDictWithArbitraryKeys.d.ts.map