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