import type { IAppearanceableProps } from '../../../Behaviors/Appearanceable'; import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { ISlottableProps } from '../../../Behaviors/Slottable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; /** * Represents the `ISegmentElementProps` interface. * * @public */ export interface ISegmentElementProps extends ISlottableProps, IVariantableProps, IDisableableProps, IAppearanceableProps { } //# sourceMappingURL=ISegmentElementProps.d.ts.map