import * as z from "zod"; export declare const CpfFieldStatusSchema: z.ZodEnum<["empty", "invalid", "valid", "incomplete"]>; export declare const CpfFieldPropsSchema: z.ZodObject<{ label: z.ZodString; value: z.ZodString; onChange: z.ZodFunction, z.ZodVoid>; error: z.ZodOptional; required: z.ZodOptional; helperText: z.ZodOptional; disabled: z.ZodOptional; "data-testid": z.ZodOptional; }, "strip", z.ZodTypeAny, { onChange: (args_0: string, ...args: unknown[]) => void; label: string; value: string; disabled?: boolean | undefined; error?: string | undefined; required?: boolean | undefined; helperText?: string | undefined; "data-testid"?: string | undefined; }, { onChange: (args_0: string, ...args: unknown[]) => void; label: string; value: string; disabled?: boolean | undefined; error?: string | undefined; required?: boolean | undefined; helperText?: string | undefined; "data-testid"?: string | undefined; }>; export type CpfFieldProps = z.infer; export type CpfFieldStatus = z.infer;