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