import { type PropsOf, type Signal } from "@builder.io/qwik"; import { type TransitionTimingFunction } from "./carousel-container"; export type CarouselRootProps = PropsOf<"section"> & { spaceBetweenSlides?: number; "bind:currSlideIndex"?: Signal; slidesPerView?: number; draggable?: boolean; transitionDuration?: number; transitionTimingFunction?: TransitionTimingFunction; loop?: boolean; }; export declare const Carousel: import("@builder.io/qwik").Component;