interface IJsxInputProps extends IJsxProps { className?: string; type?: "text" | "password" | 'number'; name?: string; placeholder?: string; readonly?: boolean; disabled?: boolean; onChange?: (v: string) => void; } declare const Input: FC; export default Input;