import { ProgressDotsVariant } from '../../atoms/ProgressDots/types'; import { ComponentProps } from 'react'; export declare const carrouselVariants: (props?: ({ animation?: "none" | "left" | "right" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export type CarrouselProps = ComponentProps<'div'> & { items: string[] | { src: string; alt?: string; }[]; variant?: ProgressDotsVariant; activeIndex?: number; onIndexChange?: (index: number) => void; onNext?: (index: number) => void; onPrev?: (index: number) => void; }; //# sourceMappingURL=types.d.ts.map