import { InputHTMLAttributes } from 'react';
export interface InputProps extends Omit<InputHTMLAttributes<HTMLInputElement>, '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<InputProps & import('react').RefAttributes<HTMLInputElement>>;
export default Input;
