import * as React from "react"; export interface HeroSectionProps extends Omit, 'title'> { greeting?: string; title: string | React.ReactNode; description?: string | React.ReactNode; actionText?: string; onAction?: () => void; actionButton?: React.ReactNode; gradient?: string; backgroundImage?: string; overlay?: boolean; overlayOpacity?: number; customStyles?: { root?: React.CSSProperties; content?: React.CSSProperties; title?: React.CSSProperties; description?: React.CSSProperties; }; } /** * HeroSection component for large header sections * * Used in: * - Dashboard hero * - Landing pages * - Welcome screens * * @example * ```tsx * navigate('/explore')} * gradient="linear-gradient(135deg, #667eea 0%, #764ba2 100%)" * /> * ``` */ export declare const HeroSection: React.ForwardRefExoticComponent>; //# sourceMappingURL=hero-section.d.ts.map