import { type SwiperProps } from "./swiper"; import SwiperIndicator, { type SwiperIndicatorProps } from "./swiper-indicator"; import SwiperItem, { type SwiperItemProps } from "./swiper-item"; import type { SwiperItemEvent } from "./swiper.shared"; export type { SwiperThemeVars } from "./swiper.shared"; interface SwiperInterface { (props: SwiperProps): JSX.Element; Item: typeof SwiperItem; Indicator: typeof SwiperIndicator; } declare const Swiper: SwiperInterface; declare namespace Swiper { type ItemEvent = SwiperItemEvent; type ItemProps = SwiperItemProps; type IndicatorProps = SwiperIndicatorProps; } export default Swiper;