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