import type { TableCellProps } from '@mui/material'; import React from 'react'; import type { To } from 'react-router'; /** Props for {@link EllipsisTableCell}. */ 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; } /** Table cell that ellipsizes its value and optionally links it. */ export declare const EllipsisTableCellWithRef: { ({ ref, children, href, link, to, value, ...props }: EllipsisTableCellProps): React.JSX.Element; displayName: string; }; /** Alias for {@link EllipsisTableCellWithRef}. */ export declare const EllipsisTableCell: { ({ ref, children, href, link, to, value, ...props }: EllipsisTableCellProps): React.JSX.Element; displayName: string; }; //# sourceMappingURL=EllipsisTableCell.d.ts.map