import { ZodStringDef } from "@lowcode-modou/zod"; export declare type JsonSchema7StringType = { type: "string"; minLength?: number; maxLength?: number; format?: "email" | "uri" | "uuid"; pattern?: string; allOf?: { pattern: string; }[]; }; export declare function parseStringDef(def: ZodStringDef): JsonSchema7StringType;