import { ZodRecordDef, ZodTypeAny } from "@lowcode-modou/zod"; import { JsonSchema7Type } from "../parseDef"; import { References } from "../References"; import { JsonSchema7EnumType } from "./enum"; import { JsonSchema7StringType } from "./string"; declare type JsonSchema7RecordPropertyNamesType = Omit | Omit; export declare type JsonSchema7RecordType = { type: "object"; additionalProperties: JsonSchema7Type; propertyNames?: JsonSchema7RecordPropertyNamesType; }; export declare function parseRecordDef(def: ZodRecordDef, refs: References): JsonSchema7RecordType; export {};