tdesign-react
Version:
TDesign Component for React
10 lines (9 loc) • 357 B
TypeScript
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;