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