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