import React from 'react'; export interface OutlinedTextFieldProps { helperText?: string; error?: boolean; value?: any; className?: string; label?: React.ReactNode; margin?: 'normal' | 'dense'; fullWidth?: boolean; inline?: boolean; wrapperProps?: any; errorProps?: any; menuProps?: any; formHelperTextProps?: any; inputProps?: any; inputLabelProps?: any; selectDisplayProps?: any; selectProps?: any; select?: boolean; size?: 'small' | 'medium' | 'large'; classes?: any; } declare const OutlinedTextField: React.FC; export default OutlinedTextField;