import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { IItemsElementProps } from '../Abstracts/Items/IItemsElementProps'; import type { IDataTableColumnDefinition } from './IDataTableColumnDefinition'; /** * Represents the `IDataTableElementProps` interface. * * @public */ export interface IDataTableElementProps extends IItemsElementProps, IDisableableProps { alternating: boolean; autoGenerateColumns: boolean; columnDefinitions: Array; } //# sourceMappingURL=IDataTableElementProps.d.ts.map