import React, { ReactNode, ElementType } from 'react'; import { BoxProps } from '@mui/material'; export interface HelperTextContentProps extends BoxProps { /** * Text on the left side */ textLeft?: ReactNode; /** * Properties applied to text on the left side */ textLeftProps?: BoxProps; /** * Text on the right side, expected to be characters count, e.g. '0 / 100' * It is recommended to also provide aria-label. */ textRight?: ReactNode; /** * Properties applied to text on the right side */ textRightProps?: BoxProps; /** * Input value */ value?: string; /** * Input maxLength */ maxLength?: number; } /** * Advanced content for the Field's HelperText * * }> */ export declare const HelperTextContent: React.FC;