import { z } from 'zod'; import type { ListSchema } from '../../../../schema/index.js'; import type { Overwrite } from '../../../../types/overwrite.js'; import type { WithValidate } from '../utils.js'; import type { SchemaZodParser } from './schema.js'; import type { ZodParserOptions } from './types.js'; import type { WithDefault, WithOptional } from './utils.js'; export type ListZodParser = ListSchema extends SCHEMA ? z.ZodTypeAny : WithDefault>>>>>; export declare const listZodParser: (schema: ListSchema, options?: ZodParserOptions) => z.ZodTypeAny;