import type { TableCellProps } from '@mui/material';
import type { To } from 'react-router-dom';
export interface EllipsisTableCellProps extends TableCellProps {
    href?: string;
    link?: boolean;
    to?: To;
    value?: string;
    /**
     * Width of the table cell.
     *
     * Note: When using percentages, this value can be different than what you expect
     * if used on a cell that is not the first cell in the first row.
     */
    width?: string | number;
}
export declare const EllipsisTableCellWithRef: {
    ({ ref, children, href, link, to, value, ...props }: EllipsisTableCellProps): import("react/jsx-runtime").JSX.Element;
    displayName: string;
};
export declare const EllipsisTableCell: {
    ({ ref, children, href, link, to, value, ...props }: EllipsisTableCellProps): import("react/jsx-runtime").JSX.Element;
    displayName: string;
};
//# sourceMappingURL=EllipsisTableCell.d.ts.map