UNPKG

mui-forms

Version:

Material UI forms with json based schema

12 lines (11 loc) 416 B
/// <reference types="react" /> import { IValidation } from "@manojadams/metaforms-core"; import { IFieldProps } from "../../common/field"; interface IProps extends IFieldProps { className: string; handleChange: (...params: any) => void; validate: (phone: string) => void; validation?: IValidation; } declare function PhoneControl(props: IProps): JSX.Element; export default PhoneControl;