import type { ComponentProps, FC, PropsWithChildren, ReactNode } from 'react'; export interface FlowbiteCarouselTheme { base: string; indicators: { active: { off: string; on: string; }; base: string; wrapper: string; }; item: { base: string; wrapper: string; }; control: { base: string; icon: string; }; leftControl: string; rightControl: string; scrollContainer: { base: string; snap: string; }; } export interface CarouselProps extends PropsWithChildren> { indicators?: boolean; leftControl?: ReactNode; rightControl?: ReactNode; slide?: boolean; slideInterval?: number; } export declare const Carousel: FC;