import * as react from 'react'; import { HTMLAttributes } from 'react'; interface PanelProps extends Omit, 'title'> { title?: React.ReactNode; description?: React.ReactNode; /** Content rendered on the right side of the header (actions, badges, etc.) */ actions?: React.ReactNode; } declare const Panel: react.ForwardRefExoticComponent>; export { Panel, type PanelProps };