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