import { TNode } from '../common';
export interface TdStatisticProps {
    animation?: animation;
    animationStart?: boolean;
    color?: string;
    decimalPlaces?: number;
    extra?: string | TNode;
    format?: (value: number) => number;
    loading?: boolean;
    prefix?: string | TNode;
    separator?: string;
    suffix?: string | TNode;
    title?: string | TNode;
    trend?: 'increase' | 'decrease';
    trendPlacement?: 'left' | 'right';
    unit?: string | TNode;
    value?: number;
}
export interface StatisticInstanceFunctions {
    start: () => void;
}
export interface animation {
    duration: number;
    valueFrom: number;
}
