import { CSSResultGroup } from "lit"; import { SigveloElement } from "@mcp-b/wc-support/base/sigvelo-element"; //#region src/components/carousel-item/carousel-item.d.ts /** * * * @summary Represents individual items used in a carousel. * @tag sigvelo-carousel-item * @documentation https://design-system.sigvelo.com/docs/components/carousel * @status stable * @since 1.0 * * @slot - The content to show inside the carousel item. * * @csspart content - A flex wrapper around the carousel item's content. * * @example Default * This component must only be used within a carousel. You can see some examples of carousel items being used in the carousel documentation. */ declare class SigveloCarouselItem extends SigveloElement { static styles: CSSResultGroup; /** An optional name for the carousel item so you can reference it with the `active-name` attribute. */ name: string; firstUpdated(): void; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { "sigvelo-carousel-item": SigveloCarouselItem; } } //#endregion export { SigveloCarouselItem as t };