import { SxProps } from '@mui/material'; import { type JSX } from 'react'; interface CharacterLimitPluginProps { maxLength?: number; charLimitIndicatorStyle?: SxProps; alignLeft?: boolean; } export declare function CharacterLimitPlugin({ maxLength, charLimitIndicatorStyle, alignLeft, }: CharacterLimitPluginProps): JSX.Element | null; export {};