import type { ValuesOf } from '../../Types/ValuesOf'; /** * `CarouselDisplayMode` - Defines how carousel items are arranged and transitioned. * * @public */ export declare const CarouselDisplayMode: { /** * `slide` - Items are arranged side by side in a horizontal track and slide into view. * @default */ readonly Slide: "slide"; /** * `deck` - Items are stacked on top of each other (like a deck of cards). The active item is on top, * with subsequent items offset slightly to create a depth effect. Transition animations move * the top card away to reveal the next. */ readonly Deck: "deck"; }; /** * @public */ export type CarouselDisplayMode = ValuesOf; //# sourceMappingURL=CarouselDisplayMode.d.ts.map