import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { ISlottableProps } from '../../../Behaviors/Slottable'; import type { SelectionMode } from '../../../Types/SelectionMode'; /** * Represents the `ITreeElementProps` interface. * * @public */ export interface ITreeElementProps extends IDisableableProps, ISlottableProps { selectionMode: SelectionMode; } //# sourceMappingURL=ITreeElementProps.d.ts.map