import { BoxProps, TypographyProps } from '@mui/material';

export type EllipsisTextWithTooltipProps = BoxProps & {
    label?: string;
    title?: string;
    spanSx?: BoxProps['sx'];
    permanentTitle?: string;
    to?: string;
    useCopyContent?: boolean;
    onClick?: () => void;
    fullWidth?: boolean;
    outerBoxSx?: BoxProps['sx'];
    useTypography?: boolean;
    typographyVariant?: TypographyProps['variant'];
};
export declare const EllipsisTextWithTooltip: (props: EllipsisTextWithTooltipProps) => import("react/jsx-runtime").JSX.Element;
