import carousel from "./carousel"; import CarouselItem from "./carouse-item"; type Component = typeof carousel; interface SwipeInterface extends Component { Item: typeof CarouselItem; } declare const Carousel: SwipeInterface; export default Carousel;