import type { TypographyProps as MuiTypographyProps } from '@mui/material';
export interface BaseEllipsisTypographyProps extends MuiTypographyProps {
    direction?: 'row' | 'column';
    maxLines?: number;
}
export interface EllipsisTypographyProps extends BaseEllipsisTypographyProps {
    tooltipPlacement?: 'top' | 'right' | 'bottom' | 'left';
    heightThreshold?: number;
}
