import { ZCardCarousel_Props } from '@zurich/dev-utils/code/CardCarousel'; import { ZDSElement } from './base'; import { ZActionCard } from '../molecules/z-action-card'; import { ZArticleCard } from '../molecules/z-article-card'; import { ZCard } from './card'; type Card = ZCard | ZArticleCard | ZActionCard; /** ## `` * * Component docs. */ export declare class ZCardCarousel extends ZDSElement implements ZCardCarousel_Props { readonly _name = "card-carousel"; height?: number; _itemsPerChunk: number; render(): import('lit-html').TemplateResult<1>; get cardsChunks(): Card[][]; get initialItems(): number; get computedHeight(): number; get allItems(): Card[]; setItemsPerChunk(amount: number): void; static styles: import('lit').CSSResult; } declare global { interface HTMLElementTagNameMap { 'z-card-carousel': ZCardCarousel; } } export {};