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