import { default as React } from 'react'; export interface SectionHeaderProps { /** The header text/title */ title: string; /** Optional callback for the "+" button */ onAdd?: () => void; /** Optional tooltip/title for the add button */ addButtonTooltip?: string; /** Optional loading indicator */ loading?: boolean; /** Optional className for additional styling */ className?: string; } /** * SectionHeader Component * * A reusable header component for sections with consistent styling. * Displays a title and an optional "+" action button. * * @example * ```tsx * * * ``` */ export declare const SectionHeader: React.FC; //# sourceMappingURL=section-header.d.ts.map