export interface SliderType { href: string; pic: string; id: string; } export interface CarouselProps { sliders: SliderType[]; autoPlay?: boolean; duration?: number; }