import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { IFocusableProps } from '../../../Behaviors/Focusable'; import type { IIconableProps } from '../../../Behaviors/Iconable'; import type { ILabelableProps } from '../../../Behaviors/Labelable'; import type { IOrientableProps } from '../../../Behaviors/Orientable'; import type { IRippleableProps } from '../../../Behaviors/Rippleable'; import type { ISelectableProps } from '../../../Behaviors/Selectable'; import type { IValueableProps } from '../../../Behaviors/Valueable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; import type { TabStripPlacement } from '../../../Types/TabStripPlacement'; /** * Represents the `ITabStripItemElementProps` interface. * * @public */ export interface ITabStripItemElementProps extends ILabelableProps, IIconableProps, IDisableableProps, IFocusableProps, IVariantableProps, IOrientableProps, ISelectableProps, IValueableProps, IRippleableProps { placement: TabStripPlacement; } //# sourceMappingURL=ITabStripItemElementProps.d.ts.map