import * as react from 'react'; import { TypographyProps } from '@mui/material/Typography'; interface TextTruncatorProps extends TypographyProps { children: string; charLimit?: number; showMore?: string; showLess?: string; expandedByDefault?: boolean; } declare const TextTruncator: react.ForwardRefExoticComponent & react.RefAttributes>; export { TextTruncator, type TextTruncatorProps };