export type SwiperDirection = "horizontal" | "vertical"; export interface SwiperItemEvent { index: number; } export type SwiperThemeVars = { swiperIndicatorsMargin?: string; swiperIndicatorSize?: string; swiperIndicatorWidth?: string; swiperIndicatorHeight?: string; swiperIndicatorOpacity?: string; swiperIndicatorBackgroundColor?: string; swiperIndicatorTransitionDuration?: string; swiperIndicatorActiveOpacity?: string; swiperIndicatorActiveBackgroundColor?: string; };