import { InputHTMLAttributes } from 'react'; export interface InputProps extends Omit, 'type' | 'value'> { type?: "text" | "number" | "email" | "password" | "date" | "time" | string; value?: string | number; success?: boolean; error?: boolean; hint?: string; label?: string; required?: boolean; "aria-label"?: string; "aria-describedby"?: string; } export declare const Input: import('react').ForwardRefExoticComponent>; export default Input;