///
import { Appearance } from '../../types';
interface InputProps extends React.InputHTMLAttributes {
children?: React.ReactNode;
type: 'text' | 'password' | 'email';
appearance?: Appearance;
loading: boolean;
}
declare const Input: React.FC;
export { Input };
//# sourceMappingURL=Input.d.ts.map