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