import { FunctionComponent, PropsOf } from '@builder.io/qwik'; type CarouselProps = PropsOf<'div'> & { noIndicators?: boolean; noControls?: boolean; slideAuto?: boolean; slideInterval?: number; scrollable?: boolean; pauseOnHover?: boolean; onSlideChanged$?: () => void; }; export declare const Carousel: FunctionComponent; export declare const CarouselSlide: import("@builder.io/qwik").Component<{ align?: string | undefined; } & import("@builder.io/qwik").HTMLElementAttrs & import("@builder.io/qwik").QwikAttributes>; export {};