export interface CarouselItem {
    id?: string | number;
    imageUrl?: string;
    imageAlt?: string;
    title?: string;
    description?: string;
    active?: boolean;
    [key: string]: any;
}
