import { SelectorItemElement } from '../Abstracts/Selector/SelectorItemElement'; import { Carousel2Element } from './Carousel2Element'; import { ICarouselItem2ElementProps } from './ICarouselItem2ElementProps'; declare const CarouselItem2Element_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & typeof SelectorItemElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * Carousel Item 2 - An individual slide or content panel within a Carousel 2 component. * * @description * The Carousel Item 2 component represents a single slide or content panel within a Carousel 2 * slideshow. It serves as a container for any type of content including images, text, cards, * or complex layouts. Each item is managed by its parent carousel for positioning, visibility, * and navigation. The component automatically inherits accessibility attributes like aria-hidden * and aria-label from the parent carousel. * * @name Carousel Item 2 * @element mosaik-carousel-item-2 * @category Selectors * * @slot - The default slot for the carousel item content * * @dependency {Carousel2Element} - Parent carousel component (accessed via parent property) * * @fires connected {ConnectedEvent} - Fired when the carousel item is connected to the DOM * @fires changed {PropertyChangedEvent} - Fired when carousel item properties change * * @example * Basic carousel item with image: * ```html * * Slide 1 * * ``` * * @example * Carousel item with card content: * ```html * * *

Product Title

*

Product description goes here.

*
*
* ``` * * @public */ export declare class CarouselItem2Element extends CarouselItem2Element_base implements ICarouselItem2ElementProps { /** * @public */ constructor(); /** * Returns the `is` property. * The `is` property represents natural name of this element. * * @public * @static * @override * @readonly */ static get is(): string; /** * Get the item parent. * * @protected * @readonly */ get parent(): Carousel2Element; } /** * @public */ export declare namespace CarouselItem2Element { type Props = ICarouselItem2ElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-carousel-item-2': CarouselItem2Element; } } export {}; //# sourceMappingURL=CarouselItem2Element.d.ts.map