import * as z from "zod"; export declare const CellphoneInputPropsSchema: z.ZodObject<{ name: z.ZodDefault; label: z.ZodString; value: z.ZodString; onChange: z.ZodFunction, z.ZodVoid>; error: z.ZodOptional; status: 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; name: string; disabled?: boolean | undefined; status?: "valid" | "loading" | "default" | "invalid" | 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; status?: "valid" | "loading" | "default" | "invalid" | undefined; name?: string | undefined; error?: string | undefined; required?: boolean | undefined; helperText?: string | undefined; "data-testid"?: string | undefined; }>; export type CellphoneInputProps = z.infer;