import type { ISelectableProps } from '../../../Behaviors/Selectable'; import type { IValueableProps } from '../../../Behaviors/Valueable'; import type { ITableCellBaseElementProps } from './abstracts/ITableCellBaseElementProps'; /** * Represents the `ITableBodyCellElementProps` interface. * * @public */ export interface ITableBodyCellElementProps extends ITableCellBaseElementProps, ISelectableProps, IValueableProps { } //# sourceMappingURL=ITableBodyCellElementProps.d.ts.map