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;
