import { ZodIntersectionDef } from "zod"; import { JsonSchema7Type } from "../parseDef"; import { Refs } from "../Refs"; export type JsonSchema7AllOfType = { allOf: JsonSchema7Type[]; }; export declare function parseIntersectionDef(def: ZodIntersectionDef, refs: Refs): JsonSchema7AllOfType | JsonSchema7Type | undefined;