import type React from "react"; interface HeroSectionProps { title: string; description?: string; badge?: string; primaryAction?: { label: string; onClick: () => void; }; secondaryAction?: { label: string; onClick: () => void; }; tertiaryAction?: { label: string; onClick: () => void; }; gradient: string; children?: React.ReactNode; className?: string; } export declare function DashboardHero({ title, description, badge, primaryAction, secondaryAction, tertiaryAction, gradient, children, className, }: HeroSectionProps): import("react/jsx-runtime").JSX.Element; export {};