import * as react_jsx_runtime from 'react/jsx-runtime'; import * as React from 'react'; /** * PageHeader — WealthX Design System * * In-page heading block. Renders inside scrollable content — not part of * the layout shell. Use for sections that need a visible title and optional * description (e.g. "My Advisors", "How can we help?"). * * For a sticky top-of-page bar with action buttons, use PageTopBar instead. */ interface PageHeaderProps { /** Main page / section title */ title: string; /** Optional subtitle shown below the title */ description?: string; /** Optional action elements rendered to the right of the title block */ actions?: React.ReactNode; className?: string; } declare function PageHeader({ title, description, actions, className, }: PageHeaderProps): react_jsx_runtime.JSX.Element; export { PageHeader, type PageHeaderProps };