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