import React from 'react'; import './index.less'; export interface GPanelProps { lColSpanC: number; lTitle: string; lToolButton?: any; lContent: any; rColSpanC: number; rTitle: string; rToolButton: any; rContent: any; } declare const GPanel: React.FC; export default GPanel;