export interface HeroProps { className?: string; badge?: string; title: string; subtitle: string; } export declare function Hero({ className, badge, title, subtitle, }: HeroProps): import("react/jsx-runtime").JSX.Element;