import { ZodSetDef } from "@lowcode-modou/zod"; import { JsonSchema7Type } from "../parseDef"; import { References } from "../References"; export declare type JsonSchema7SetType = { type: "array"; items?: JsonSchema7Type; minItems?: number; maxItems?: number; }; export declare function parseSetDef(def: ZodSetDef, refs: References): JsonSchema7SetType;