import * as React from "react"; export declare type InputType = "text" | "email" | "password"; export declare type InputStatus = "default" | "success" | "error"; export declare type InputProps = { id?: string; name?: string; automationId?: string; ariaDescribedBy?: string; className?: string; inputType?: InputType; placeholder?: string; disabled?: boolean; inputValue?: string; reversed?: boolean; status?: InputStatus; startIconAdornment?: React.ReactNode; endIconAdornment?: React.ReactNode; onChange?: (event: React.ChangeEvent) => any; onBlur?: (event: React.FocusEvent) => any; onFocus?: (event: React.FocusEvent) => any; }; declare type Input = React.FunctionComponent; declare const Input: Input; export default Input;