import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { IOrientableProps } from '../../../Behaviors/Orientable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; /** * Represents the `IIndicatorElementProps` interface. * * @public */ export interface IIndicatorElementProps extends IDisableableProps, IVariantableProps, IOrientableProps { total: number; selected: number; } //# sourceMappingURL=IIndicatorElementProps.d.ts.map