import { TooltipProps, TypographyProps } from '@mui/material';
import { FC, ReactNode } from 'react';
export type EllipsisWithTooltipProps = {
    tooltipProps?: Omit<TooltipProps, "children" | "title">;
    typographyProps?: Omit<TypographyProps, "noWrap" | "overflow" | "textOverflow">;
    children: ReactNode;
};
declare const EllipsisWithTooltip: FC<EllipsisWithTooltipProps>;
export default EllipsisWithTooltip;
