import * as react from 'react';
import { InputHTMLAttributes } from 'react';
interface InputProps extends InputHTMLAttributes {
label?: string;
error?: string;
}
declare const Input: react.ForwardRefExoticComponent>;
export { Input, type InputProps };