import type { ITextFormattableProps } from '../../../Behaviors/TextFormattable'; import type { ITextOverflowableProps } from '../../../Behaviors/TextOverflowable'; import type { SortDirection } from '../../../Types/SortDirection'; /** * Represents the `ITableCellElementProps` interface. * * @public */ export interface ITableCellElementProps extends ITextFormattableProps, ITextOverflowableProps { key: string; sortable: boolean; sortDirection: SortDirection | 'none'; text: string; } //# sourceMappingURL=ITableCellElementProps.d.ts.map