import { HTMLAttributes, ReactNode } from 'react'; export interface SectionCardProps extends Omit, "title"> { /** Section heading. */ title: ReactNode; /** Section body. */ children: ReactNode; /** Optional right-aligned header slot (actions). */ actions?: ReactNode; } /** * SectionCard — a titled Card, the common "bordered section with a heading" * surface. Thin convenience wrapper composed from the Card family (no bespoke * chrome) — packages HES's app-local `SectionCard` ({title, children}) so both * consumers adopt it override-free. */ export declare const SectionCard: import('react').ForwardRefExoticComponent>; //# sourceMappingURL=SectionCard.d.ts.map