import React from 'react'; export interface SwiperBoxProps extends React.HTMLAttributes { data: { list: any[]; configuration?: any; onVideoPlayBtnClick?: (jIndex: number) => void; }; id: string; itemClassName?: string; breakpoints?: Record; Slide: React.ComponentType<{ data: any; configuration?: any; jIndex?: number; }>; }