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