import * as React from 'react'; import './index.scss'; export interface HhPanelProps { title: string; content: string; flex: number; } declare const HhPanel: React.FC; export default HhPanel;