import { ReactNode } from 'react'; export interface SettingsSectionHeaderProps { actions?: ReactNode; className?: string; description?: ReactNode; title: ReactNode; titleClassName?: string; } /** * INV-SETTINGS-LAYOUT-001 / INV-SETTINGS-LAYOUT-002: * User-settings H2 headings and section actions render outside the painted card. */ export declare function SettingsSectionHeader({ actions, className, description, title, titleClassName }: SettingsSectionHeaderProps): import("react").JSX.Element;