import { z } from 'zod'; import { $ZodFunctionArgs, $ZodFunctionOut, util } from 'zod/v4/core'; import { ZodBaseMapper } from './zod-base-mapper.js'; export declare class ZodToStringMapper extends ZodBaseMapper { any(): string; array(wrappedType: string): string; boolean(): string; enum(values: util.EnumValue[]): string; function(input: string, output: string): string; functionArguments(value?: $ZodFunctionArgs): string; functionReturns(value: $ZodFunctionOut): string; literal(value: string | number | boolean | null): string; never(): string; null(): string; number(isInteger?: boolean): "z.number()" | "z.number().int()"; object(properties: [string, z.ZodTypeAny][]): string; optional(wrappedType: string): string; record(keyType: string, valueType: string): string; renderField(type: z.ZodTypeAny, key?: string): string; string(): string; tuple(wrappedTypes: string[]): string; undefined(): string; union(wrappedTypes: string[]): string; unknown(): string; }