import React from 'react'; export interface StatisticsPanelPropsType { panelTitle: string; children: React.ReactElement | Array; } declare const StatisticsPanel: React.FC; export default StatisticsPanel;