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