import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { ISelectorItemElementProps } from '../Abstracts/Selector/ISelectorItemElementProps'; /** * Represents the `ICarouselItemElementProps` interface. * * @public */ export interface ICarouselItemElementProps extends ISelectorItemElementProps, IDisableableProps { /** * Indicates whether this item has been dismissed (swiped past) in deck display mode. */ isDismissed: boolean; /** * Indicates whether this item is the currently active card in deck display mode. */ isActive: boolean; /** * The direction this card is being dismissed or arriving from in deck mode. */ dismissDirection: string | null; } //# sourceMappingURL=ICarouselItemElementProps.d.ts.map