import React from 'react'; export interface InputProps extends React.InputHTMLAttributes { label?: string; error?: string; helperText?: string; } export declare const Input: React.ForwardRefExoticComponent>; export default Input;