import { FC } from "react"; import { TextFieldProps } from "@mui/material"; type iPhone = Omit & { name: string; label?: string; helperText?: string; value?: string | number; validation?: { pattern?: { value: RegExp; message: string; }; required?: string | boolean; }; errorMessages?: { required?: string; pattern?: string; }; onChange?: (value: string) => void; }; export declare const Phone: FC; export {};