import type { IBusyableProps } from '../../../Behaviors/Busyable'; import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { IFocusableProps } from '../../../Behaviors/Focusable'; import type { ISlottableProps } from '../../../Behaviors/Slottable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; import type { ISelectorItemElementProps } from '../Abstracts/Selector/ISelectorItemElementProps'; /** * Represents the `ITreeItemElementProps` interface. * * @public */ export interface ITreeItemElementProps extends IDisableableProps, IVariantableProps, IFocusableProps, ISlottableProps, IBusyableProps, ISelectorItemElementProps { text: string; isExpanded: boolean; isChecked: boolean; } //# sourceMappingURL=ITreeItemElementProps.d.ts.map