import React from 'react'; import { StyledProps } from '../common'; import { TdSwiperProps } from './type'; export interface SwiperProps extends TdSwiperProps, StyledProps { children?: React.ReactNode; touchable?: boolean; disabled?: boolean; } declare const Swiper: React.FunctionComponent> & { SwiperItem: React.FC; }; export default Swiper;