import useEmblaCarousel, { type UseEmblaCarouselType } from 'embla-carousel-react'; import * as React from 'react'; import { Button } from './button'; type CarouselApi = UseEmblaCarouselType[1]; type UseCarouselParameters = Parameters; type CarouselOptions = UseCarouselParameters[0]; type CarouselPlugin = UseCarouselParameters[1]; interface CarouselProps { opts?: CarouselOptions; plugins?: CarouselPlugin; orientation?: 'horizontal' | 'vertical'; setApi?: (api: CarouselApi) => void; } declare function Carousel({ orientation, opts, setApi, plugins, className, children, ...props }: React.ComponentPropsWithoutRef<'div'> & CarouselProps): import("react/jsx-runtime").JSX.Element; declare function CarouselContent({ className, ...props }: React.ComponentPropsWithoutRef<'div'>): import("react/jsx-runtime").JSX.Element; declare function CarouselItem({ className, ...props }: React.ComponentPropsWithoutRef<'div'>): import("react/jsx-runtime").JSX.Element; declare function CarouselPrevious({ className, variant, size, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function CarouselNext({ className, variant, size, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; export { Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, };