/// 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;