UNPKG

tdesign-react

Version:
10 lines (9 loc) 357 B
import React from 'react'; import { TdSwiperProps } from './type'; import { StyledProps } from '../common'; import SwiperItem from './SwiperItem'; export interface SwiperProps extends TdSwiperProps, StyledProps { children?: React.ReactNode; } declare const Swiper: React.FC<SwiperProps> & Record<'SwiperItem', typeof SwiperItem>; export default Swiper;