import { SelectorItemElement } from '../Abstracts/Selector/SelectorItemElement'; import { CarouselElement } from './CarouselElement'; import type { ICarouselItemElementProps } from './ICarouselItemElementProps'; declare const CarouselItemElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Disableable").IDisableableProps) & (abstract new () => SelectorItemElement>) & import("../../../Behaviors/Themeable").IThemeableCtor; /** * CarouselItem - An individual content slide within a carousel navigation component. * * Represents a single content item that can be displayed within a carousel layout. * Contains content such as images, cards, text, or any other elements that need * to be presented in the carousel's sliding presentation format. * * @name CarouselItemElement * @element mosaik-carousel-item * @category Selectors * * @slot - Default content area for the carousel item's content * * @csspart container - Main container for the carousel item content * @csspart content - Content wrapper within the carousel item * * @cssprop {String} --carousel-item-padding - Internal padding for carousel item content * @cssprop {Color} --carousel-item-background - Background color for the carousel item * @cssprop {String} --carousel-item-border-radius - Border radius for carousel item styling * * @dependency CarouselElement - Parent carousel component that manages navigation and display * * @example * ```html * * * Featured product *
*

New Collection

* Shop Now *
*
* * * * * * John Smith * "This product changed everything for our team!" * * * * * * *
* * Analytics Dashboard * Track your performance with detailed insights *
*
* ``` * * @public */ export declare class CarouselItemElement extends CarouselItemElement_base implements ICarouselItemElementProps { private readonly _inheritance; private _isDismissed; private _isActive; private _dismissDirection; /** * @public */ constructor(); /** * Returns the `is` property. * The `is` property represents natural name of this element. * * @public * @static * @readonly */ static get is(): string; /** * @inheritdoc * When used inside a Carousel, inherits the carousel's disabled state unless explicitly set. * * @public * @override */ get disabled(): boolean; set disabled(value: boolean); /** * Gets or sets the `isDismissed` property. * Indicates whether this item has been dismissed (swiped past) in deck display mode. * * @public * @attr is-dismissed */ get isDismissed(): boolean; set isDismissed(value: boolean); /** * Gets or sets the `isActive` property. * Indicates whether this item is the currently active card in deck display mode. * * @public * @attr is-active */ get isActive(): boolean; set isActive(value: boolean); /** * Gets or sets the `dismissDirection` property. * Indicates the direction this card is being dismissed or arriving from * in deck display mode. Used by CSS to determine animation direction. * * @public * @attr dismiss-direction */ get dismissDirection(): string | null; set dismissDirection(value: string | null); /** * Get the item parent. * * @public * @readonly */ get parent(): CarouselElement; } /** * @public */ export declare namespace CarouselItemElement { type Props = ICarouselItemElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-carousel-item': CarouselItemElement; } } export {}; //# sourceMappingURL=CarouselItemElement.d.ts.map