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