import * as React from 'react'; import { StandardProps } from '..'; export interface FormHelperTextProps extends StandardProps, FormHelperTextClassKey> { disabled?: boolean; error?: boolean; filled?: boolean; focused?: boolean; component?: React.ElementType>; margin?: 'dense'; required?: boolean; variant?: 'standard' | 'outlined' | 'filled'; } export type FormHelperTextClassKey = | 'root' | 'error' | 'disabled' | 'marginDense' | 'focused' | 'filled' | 'contained' | 'required'; declare const FormHelperText: React.ComponentType; export default FormHelperText;