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