import { HTMLAttributes } from 'react';
/**
* EmphasisPanel — Boff UI 2.0 hero / summary wrapper used to draw attention to
* exactly ONE zone per page (e.g. a primary summary, a featured callout). Uses
* the accent wash + seam border tokens so it reads as elevated-but-quiet.
*
* Restraint guideline: use at most one EmphasisPanel per page. For ordinary
* content surfaces, reach for `Card` / `GlassCard` instead.
*/
export type EmphasisPanelProps = HTMLAttributes & {
ref?: React.Ref;
};
declare function EmphasisPanel({ ref, className, children, ...props }: EmphasisPanelProps): import("react/jsx-runtime").JSX.Element;
declare namespace EmphasisPanel {
var displayName: string;
}
export { EmphasisPanel };
//# sourceMappingURL=emphasis-panel.d.ts.map