export interface PanelProps {
    /**
     * The panel heading
     */
    heading: string;
    /**
     * The optional panel contents
     */
    children?: React.ReactNode;
}
