UNPKG

coject

Version:
23 lines (22 loc) 582 B
import { FC } from "react"; import { TextFieldProps } from "@mui/material"; type iPhone = Omit<TextFieldProps, "type" | "validation" | "required" | "onChange"> & { 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<iPhone>; export {};