import type { IAppearanceableProps } from '../../../Behaviors/Appearanceable'; import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { ISlottableProps } from '../../../Behaviors/Slottable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; import type { TabPanelAlignment } from '../../../Types/TabPanelAlignment'; import type { TabStripPlacement } from '../../../Types/TabStripPlacement'; /** * Represents the `ITabElementProps` interface. * * @public */ export interface ITabElementProps extends IDisableableProps, IAppearanceableProps, IVariantableProps, ISlottableProps { alignment: TabPanelAlignment; placement: TabStripPlacement; hasIndicator: boolean; enableGestures: boolean; } //# sourceMappingURL=ITabElementProps.d.ts.map