/// import { DropdownItem } from '../Dropdown/Dropdown'; declare type TextType = 'text' | 'number' | 'email' | 'password' | 'search'; export interface TextInputProps { onSubmit?: Function; type?: TextType; id?: string; placeholder?: string; onChange?: Function; loading?: boolean; loadingColour?: string; primaryColour?: string; actionColour?: string; value?: string; borderRadius?: string; shouldSubmitOnEnter?: boolean; autocompleteValues?: DropdownItem[]; className?: string; iconType?: 'none' | 'text' | 'outlined' | 'contained'; } export declare const TextInput: (props: TextInputProps) => JSX.Element; export {};