import React, { LegacyRef } from 'react'; export type CarouselItemWidth = 'full' | 'half'; export type CarouselItemProps = React.HTMLAttributes & { readonly innerRef?: LegacyRef; src?: string; alt?: string; index?: number; width?: CarouselItemWidth; hasButtons?: boolean; buttonStyle?: (value: string) => React.ReactElement; onPrev?: () => void; onNext?: () => void; }; declare const CarouselItem: ({ children, innerRef, src, alt, index, width, hasButtons, buttonStyle, onPrev, onNext, className, ...props }: CarouselItemProps) => JSX.Element; export default CarouselItem;