/// import { FormHelperTextProps } from '@material-ui/core/FormHelperText'; import { InputLabelProps } from '@material-ui/core/InputLabel'; import { FormControlProps } from '@material-ui/core/FormControl'; import type { RichInputBaseProps } from '../RichInputBase'; declare type RichTextFieldProps = Omit & { variant?: 'filled' | 'outlined'; value?: string; defaultValue?: string; required?: boolean; label?: React.ReactNode; helperText?: React.ReactNode; FormHelperTextProps?: FormHelperTextProps; InputLabelProps?: InputLabelProps; options?: RichInputBaseProps['options']; onChange?: RichInputBaseProps['onChange']; onFocus?: RichInputBaseProps['onFocus']; onBlur?: RichInputBaseProps['onBlur']; }; /** * Rich Text Field * * @param {RichTextFieldProps} props * @returns {JSX.Element} */ declare const RichTextField: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export default RichTextField;