import { z } from 'zod'; import type { JsonSchemaObject, Refs } from '../types'; export declare const parseArray: (jsonSchema: JsonSchemaObject & { type: "array"; }, refs: Refs) => z.ZodArray | z.ZodTuple<[z.ZodTypeAny], null>;