import type { CarouselDataItem } from '@/types/carousel'; export interface CarouselPCProps { columnSpan?: number; autoplay?: boolean; arrows?: boolean; arrowsColor?: string; arrowsSize?: number; dots?: boolean; effect?: 'scrollx' | 'fade'; autoplaySpeed?: number; carouselDataList: CarouselDataItem[]; $$componentItem?: { renderType?: string; [key: string]: any; }; appId?: string; getEngineApis?: any; style?: any; backgroundType?: any; }