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