import type { IAnimatableProps } from '../../../Behaviors/Animatable'; import type { ICloseableProps } from '../../../Behaviors/Closeable'; import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { IIconableProps } from '../../../Behaviors/Iconable'; import type { ILabelableProps } from '../../../Behaviors/Labelable'; import type { IOrientableProps } from '../../../Behaviors/Orientable'; import type { ISelectableProps } from '../../../Behaviors/Selectable'; import type { IValueableProps } from '../../../Behaviors/Valueable'; /** * Represents the `ITabItemElementProps` interface. * * @public */ export interface ITabItemElementProps extends IDisableableProps, IOrientableProps, ICloseableProps, ILabelableProps, ISelectableProps, IIconableProps, IValueableProps, IAnimatableProps { } //# sourceMappingURL=ITabItemElementProps.d.ts.map