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