import { z } from 'zod'; import type { ItemSchema } from '../../../../schema/index.js'; import type { OmitKeys } from '../../../../types/omitKeys.js'; import type { Overwrite } from '../../../../types/overwrite.js'; import type { SchemaZodFormatter } from './schema.js'; import type { ZodFormatterOptions } from './types.js'; import type { WithAttributeNameDecoding } from './utils.js'; export type ItemZodFormatter = ItemSchema extends SCHEMA ? z.ZodTypeAny : WithAttributeNameDecoding]: SchemaZodFormatter>; }, 'strip'>>; export declare const itemZodFormatter: (schema: SCHEMA, options?: OPTIONS) => ItemZodFormatter;