import { type BgVariant } from '../../utils/bg.js'; export interface ProductsGridProps { headline?: string; subheadline?: string; columns?: 2 | 3 | 4 | 5 | 6; children: React.ReactNode; bg?: BgVariant; className?: string; } export declare function ProductsGrid({ headline, subheadline, columns, children, bg, className, }: ProductsGridProps): import("react/jsx-runtime").JSX.Element;