import React from 'react'; /** @deprecated Use `data-table` instead. */ export interface TableDescriptionCellProps { /** * The description text to display */ text: string; /** * Optional additional CSS classes */ className?: string; /** * Maximum number of lines to display before truncating * @default 3 */ maxLines?: number; } /** * @deprecated Use `data-table` instead. */ export declare function TableDescriptionCell({ text, className, maxLines }: TableDescriptionCellProps): React.JSX.Element; //# sourceMappingURL=table-description-cell.d.ts.map