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