import type { CarouselProps as AntCarouselProps, CarouselRef } from "antd/es/carousel"; import React from "react"; export type { CarouselRef } from "antd/es/carousel"; export interface Props extends AntCarouselProps { innerRef?: React.Ref; } export declare const Carousel: ({ innerRef, ...props }: Props) => React.JSX.Element;