import { default as React } from 'react'; /** * @deprecated Use `Carousel` from `@tedi-design-system/react/tedi` instead — with * `Carousel.Content loop={false}` and `Carousel.Navigation overlay` for the same * bounded, edge-arrow pattern (plus keyboard and screen-reader support). */ export interface CarouselProps { /** * Number of items visible at once in the carousel viewport. * Determines the width of each item and how many are shown side by side. */ itemCountShown: number; /** * React children elements to be rendered inside the carousel. * Typically a list of identical or similar components like cards or items. */ children: React.ReactNode; /** * Optional class name to apply custom styling to the outermost carousel wrapper. */ className?: string; } /** * @deprecated Use `Carousel` from `@tedi-design-system/react/tedi` instead — with * `Carousel.Content loop={false}` and `Carousel.Navigation overlay` for the same * bounded, edge-arrow pattern (plus keyboard and screen-reader support). */ export declare const Carousel: (props: CarouselProps) => JSX.Element; export default Carousel;