import React from 'react'; import './index.less'; export interface LogicPanelProps { isShowTime?: boolean; tabs: any[]; renderContent?: any; curTab: string; onTabChange: (key: string) => void; tabBarExtraContent?: React.ReactChild; } /** * 逻辑视图面板 * @param props * @returns */ declare const LogicPanel: React.FC; export default LogicPanel;