import * as React from "react"; interface Props { label: string; error?: string; touched?: boolean; rightText?: string; rightIcon?: string; leftIconClicked?: Function; } interface State { focused: boolean; } declare class Input extends React.Component, State> { constructor(props: Props); onFocus: (event: React.FocusEvent) => void; onBlur: (_: React.FocusEvent) => void; render(): JSX.Element; } export default Input;