export interface CarouselProps extends React.HTMLAttributes { itemsToScroll?: number; noSnap?: boolean; showButtons?: boolean; variant?: "card" | "sunk"; onScrollLeftEnabled?: (enabled: boolean) => void; onScrollRightEnabled?: (enabled: boolean) => void; } export interface CarouselRef { scroll: (direction: "left" | "right") => void; scrollDivRef: React.RefObject; } export declare const Carousel: import("react").ForwardRefExoticComponent>; export declare const CarouselContent: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export declare const CarouselItem: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export declare const CarouselPrevious: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; export declare const CarouselNext: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; //# sourceMappingURL=Carousel.d.ts.map