import { DMEData } from '../../core/types'; interface CarouselEntity { animation: 'default' | 'fade'; autoPlay: boolean; items: Array<{ link: string; image: string; title?: string; }>; linkOnImage?: boolean; settings: { general?: DMEData.GeneralSettingType; }; } declare const initCarouselEntity: () => CarouselEntity; export { initCarouselEntity }; export type { CarouselEntity };