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