import { z } from 'zod'; import type { SetSchema } from '../../../../schema/index.js'; import type { Overwrite } from '../../../../types/overwrite.js'; import type { WithValidate } from '../utils.js'; import type { SchemaZodFormatter } from './schema.js'; import type { ZodFormatterOptions } from './types.js'; import type { WithOptional } from './utils.js'; export type SetZodFormatter = SetSchema extends SCHEMA ? z.ZodTypeAny : WithOptional>>>>; export declare const getSetZodFormatter: (schema: SetSchema, options?: ZodFormatterOptions) => z.ZodTypeAny;