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