import React from 'react';
import { SwiperProps } from './swiper';
import SwiperItem from '../../packages/swiperitem';
import { SwiperRef } from '../../packages/swiper/types';
export type { SwiperProps } from './swiper';
export type { SwiperRef } from './types';
type CompoundedComponent = React.ForwardRefExoticComponent<Partial<SwiperProps> & Omit<React.HTMLAttributes<HTMLDivElement>, 'onChange'> & React.RefAttributes<SwiperRef>> & {
    Item: typeof SwiperItem;
};
declare const InnerSwiper: CompoundedComponent;
export default InnerSwiper;
