import type { IDisableableProps } from '../../../../Behaviors/Disableable'; import type { ITextFormattableProps } from '../../../../Behaviors/TextFormattable'; import type { ITextOverflowableProps } from '../../../../Behaviors/TextOverflowable'; /** * Represents the `ITableCellBaseElementProps` interface. * Base properties shared by all table cell variants (header, body, footer). * * @public */ export interface ITableCellBaseElementProps extends ITextFormattableProps, ITextOverflowableProps, IDisableableProps { /** * The text content of the cell. */ text: string; /** * Indicates whether this column is hidden. */ columnHidden: boolean; } //# sourceMappingURL=ITableCellBaseElementProps.d.ts.map