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