import { ZodLiteralDef } from "@lowcode-modou/zod"; import { References } from "../References"; export declare type JsonSchema7LiteralType = { type: "string" | "number" | "integer" | "boolean"; const: string | number | boolean; } | { type: "object" | "array"; }; export declare function parseLiteralDef(def: ZodLiteralDef, refs: References): JsonSchema7LiteralType;