import React from 'react'; import './styles/layerStatistic.less'; export interface LayerStatisticPropsI { id: number; onLayerUserInsight: (layerId: number, propertyValue: string, topCnt?: number) => void; showTip: boolean; labelCreateType: number; } declare const LayerStatistic: React.FC; export default LayerStatistic;