import React from "react"; declare const CellphoneInput: React.ForwardRefExoticComponent<{ 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; } & React.RefAttributes>; export default CellphoneInput;