import { HorizontalColItem } from '../../components/core/horizontal-slider/horizontal-slider.component'; import { ButtonI } from '../button.interface'; export interface HorizontalSliderI { items: HorizontalColItem[]; numVisible?: number; numScroll?: number; autoplayInterval?: number; circular?: boolean; link?: ButtonI; titleCenter?: boolean; desktop?: boolean; title?: string; subtitle?: string; buttonsHidden?: boolean; twoButtonsVersion?: boolean; selected?: HorizontalColItem['id']; selectedLabel?: string; selectedIcon?: string; }