import React, { ReactNode } from 'react'; import { SwiperProps as TaroSwiperProps } from '@tarojs/components'; export interface SwiperProps extends Omit { width: number; height: number | string; direction: 'horizontal' | 'vertical'; indicator: ReactNode; autoPlay: boolean; loop: boolean; defaultValue: number; onChange: (e: any) => void; } export declare const Swiper: React.ForwardRefExoticComponent & React.RefAttributes>;