import React from 'react'; import { InputProps as BaseInputProps } from 'antd/lib/input'; import { Control, ControllerRenderProps } from 'react-hook-form'; export interface InputPhoneProps extends Pick { className?: string; errorMsg?: string; control: Control; name: string; render?: (field: ControllerRenderProps) => React.ReactElement; label?: string; previewText?: string; defaultValue?: string; } declare const InputPhone: React.FC; export default InputPhone;