import React from 'react'; export type SwiperProps = { testID?: string; children: React.ReactNode; currentSlide?: number; variant?: 'gallery' | 'onboarding'; onChange?: (index: number) => void; }; declare const Swiper: ({ children, testID, currentSlide, variant, onChange, }: SwiperProps) => React.JSX.Element; export default Swiper;