import { ComponentPropsWithoutRef } from "react";
import type { VariantProps } from "class-variance-authority";
import { carouselSliderVariants } from "./variants";
type CarouselSliderBaseProps = ComponentPropsWithoutRef<"div">;
export interface CarouselSliderProps extends CarouselSliderBaseProps, VariantProps<typeof carouselSliderVariants> {
    itemsPerView?: number;
    loop?: boolean;
    showIndicators?: boolean;
    floatingControls?: boolean;
    border?: boolean;
}
export declare const CarouselSlider: ({ className, children, itemsPerView, loop, showIndicators, floatingControls, variant, density, border, ...props }: CarouselSliderProps) => import("react/jsx-runtime").JSX.Element;
export default CarouselSlider;
