import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { IFocusableProps } from '../../../Behaviors/Focusable'; import type { ILabelableProps } from '../../../Behaviors/Labelable'; import type { IRippleableProps } from '../../../Behaviors/Rippleable'; import type { IValueableProps } from '../../../Behaviors/Valueable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; import type { ISelectorItemElementProps } from '../../Selectors/Abstracts/Selector/ISelectorItemElementProps'; /** * Represents the `ISelectItemElementProps` interface. * * @public */ export interface ISelectItemElementProps extends ISelectorItemElementProps, IValueableProps, IDisableableProps, IVariantableProps, IFocusableProps, ILabelableProps, IRippleableProps { icon: string; isActive: boolean; } //# sourceMappingURL=ISelectItemElementProps.d.ts.map