import { z } from 'zod'; import type { AnySchema } from '../../../../schema/index.js'; import type { WithValidate } from '../utils.js'; import type { ZodFormatterOptions } from './types.js'; import type { WithDecoding, WithOptional } from './utils.js'; export type AnyZodFormatter = WithDecoding>>>; export declare const anyZodFormatter: (schema: AnySchema, options: ZodFormatterOptions) => z.ZodTypeAny;