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