import * as React from 'react'; export declare function Hero({ title, subtitle, primaryCta, secondaryCta, className, }: { title: React.ReactNode; subtitle?: React.ReactNode; primaryCta?: { label: string; href?: string; onClick?: () => void; }; secondaryCta?: { label: string; href?: string; onClick?: () => void; }; className?: string; }): import("react/jsx-runtime").JSX.Element;