import { FC, CSSProperties } from 'react';
interface IIndicatorShow {
    className?: string;
    style?: CSSProperties;
    firstSection?: {
        icon?: string;
        title: string;
        value: string | number;
        unit: string;
        onClick?: () => void;
    };
    secondSection?: {
        icon?: string;
        title: string;
        value: string | number;
        unit: string;
        onClick?: () => void;
    };
    thirdSection?: {
        title: string;
        value: string | number;
        unit: string;
        icon?: string;
        hoverText?: string;
        onClick?: () => void;
    };
}
/** 大屏标题组件 */
declare const IndicatorShow: FC<IIndicatorShow>;
export default IndicatorShow;
