import * as React from 'react'; import { IBaseControls } from '../IBaseControls'; import './_textinput.scss'; export declare enum inputType { text = "text", email = "email", number = "number", password = "password" } export interface IInputProps extends IBaseControls { type: inputType; onBlur?: (event: React.SyntheticEvent) => void; spellCheck?: boolean; onClick?: any; testClass?: string; step?: any; min?: number; onKeyPress?: any; maxLength?: number; } export declare const TextInput: (props: IInputProps) => JSX.Element;