import React, { ReactNode } from "react";
interface CarouselItem {
    id: string | number;
    content: ReactNode;
    contentid: ReactNode;
}
interface HorizontalCarouselProps {
    items: CarouselItem[];
    itemWidth?: string;
    itemHeight?: string;
    gap?: string;
    scrollLength?: string;
    initialXOffset?: string;
    finalXOffset?: string;
    children?: ReactNode;
    afterCarouselContent?: ReactNode;
}
export declare const HorizontalCarousel: React.FC<HorizontalCarouselProps>;
export default HorizontalCarousel;
