export interface ThreeDCarouselItem {
    id: number;
    title: string;
    brand: string;
    description: string;
    tags: string[];
    imageUrl: string;
    link: string;
}
interface ThreeDCarouselProps {
    items: ThreeDCarouselItem[];
    autoRotate?: boolean;
    rotateInterval?: number;
    cardHeight?: number;
    title?: string;
    subtitle?: string;
    tagline?: string;
    isMobileSwipe?: boolean;
}
export declare const ThreeDCarousel: ({ items, autoRotate, rotateInterval, cardHeight, title, subtitle, tagline, isMobileSwipe, }: ThreeDCarouselProps) => import("react/jsx-runtime").JSX.Element;
export default ThreeDCarousel;
