import { type ReactNode } from 'react'; import { type BgVariant } from '../../utils/bg.js'; export interface TestimonialsCarouselProps { headline?: string; autoplay?: boolean; interval?: number; bg?: BgVariant; className?: string; children?: ReactNode; } export declare function TestimonialsCarousel({ headline, autoplay, interval, bg, className, children, }: TestimonialsCarouselProps): import("react/jsx-runtime").JSX.Element;