import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { ISelectableProps } from '../../../Behaviors/Selectable'; 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, ISelectableProps, IDisableableProps { key: string; sortable: boolean; sortDirection: SortDirection | 'none'; text: string; } //# sourceMappingURL=ITableCellElementProps.d.ts.map