import { PureComponent } from 'react'; import { TextFieldProps } from '@material-ui/core'; declare type TSFixMe = any; export declare type RawTextInputProps = Omit & { classes?: { formHelperText?: TSFixMe; formHelperTextError?: TSFixMe; labelRootError?: TSFixMe; labelRoot?: TSFixMe; labelShrink?: TSFixMe; labelFocused?: TSFixMe; labelAsteriskError?: TSFixMe; inputRoot?: TSFixMe; input?: TSFixMe; multiline?: TSFixMe; inputUnderline?: TSFixMe; inputError?: TSFixMe; inputFocused?: TSFixMe; inputDisabled?: TSFixMe; inputNotchedOutline?: TSFixMe; rootWithLabel?: TSFixMe; }; preserveHelperTextMargin: boolean; helperTextLines: number; }; declare class RawTextInput extends PureComponent { static defaultProps: { label: string; helperText: string; fullWidth: boolean; preserveHelperTextMargin: boolean; helperTextLines: number; }; render(): JSX.Element; } export default RawTextInput;