import React from "react";
import { PropertyType, LogicformType } from "zeroetp-api-sdk";
declare const StatisticForValue: ({ property, value: _value, tip: _tip, logicform, trend: _trend, upColor, downColor, title, subTitle, showArrow, }: {
    title?: string;
    subTitle?: React.ReactNode;
    property: PropertyType;
    value: number;
    tip?: string;
    upColor?: string;
    downColor?: string;
    trend?: "up" | "down";
    showArrow?: boolean;
    logicform?: LogicformType;
}) => JSX.Element;
export default StatisticForValue;
