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