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