import { default as React } from 'react'; export interface PageSectionHeaderProps { /** Section title */ title: string; /** Optional subtitle/description */ description?: string; /** Item count to display */ count?: number; /** Count label (e.g., "items", "templates") */ countLabel?: string; /** Action button(s) */ action?: React.ReactNode; /** Show loading indicator */ loading?: boolean; /** Loading text */ loadingText?: string; /** Size variant */ size?: 'sm' | 'md' | 'lg'; /** Additional className for container */ className?: string; } /** * PageSectionHeader Component * * A flexible header for page sections with title, description, count, and actions. * Commonly used at the top of content sections to provide context and actions. * * @example * ```tsx * Add Template} * /> * ``` * * @example * ```tsx * * ``` */ export declare const PageSectionHeader: React.FC; //# sourceMappingURL=page-section-header.d.ts.map