/// import { Control } from "react-hook-form"; export type InputProps = { name: string; label: string; required?: boolean; placeholder?: string; readOnly?: boolean; disabled?: boolean; ltr?: boolean; rules?: object; message?: string; fullWidth?: boolean; type?: string; inputClassnames?: string; hideLabel?: boolean; inputProps?: object; format?: string; onFormatError?: Function; control: Control; }; declare const Input: ({ name, label, required, control, placeholder, readOnly, disabled, ltr, rules, message, fullWidth, type, inputClassnames, hideLabel, inputProps, format, onFormatError, }: InputProps) => JSX.Element; export default Input;