import { ZodLiteralDef } from 'zod'; import { Refs } from '../Refs'; export type JsonSchema7LiteralType = { type: 'string' | 'number' | 'integer' | 'boolean'; const: string | number | boolean; } | { type: 'object' | 'array'; }; export declare function parseLiteralDef(def: ZodLiteralDef, refs: Refs): JsonSchema7LiteralType;