import React, { HTMLAttributes, ReactNode } from 'react'; interface PanelProps extends HTMLAttributes { children: ReactNode; heading?: ReactNode | { id?: string; text: ReactNode; level: number | undefined; }; collapsed?: boolean; className?: string; padding?: boolean; } declare const Panel: React.ForwardRefExoticComponent>; export default Panel;