import React from 'react'; export interface ITextFieldProps { value: string | number; readOnly?: boolean; name?: string; id?: string; placeHolder?: string; length?: number; required?: boolean; autoComplete?: 'on' | 'off' | undefined; onChange?: (newValue: string | number) => void; onFocus?: () => void; onBlur?: (newValue: string, valid: boolean) => void; onClick?: () => void; Ref?: any; type?: 'text' | 'number'; restrictCharacters?: boolean; restrictedCharactersArray?: number[]; minimal?: boolean; wrapperClass?: string; inputClass?: string; onEnter?: () => void; } declare function TextField({ value, readOnly, name, id, placeHolder, length, required, autoComplete, onChange, onFocus, onBlur, onClick, Ref, inputClass, minimal, onEnter, restrictCharacters, restrictedCharactersArray, type, wrapperClass }: ITextFieldProps): React.JSX.Element; export default TextField;