import { TimeFrameServerState, Parameter } from "./../index";
export interface StatisticInterface {
    data?: {
        [key: string]: {
            [key: string]: TimeFrameServerState;
        };
    };
}
export declare class Statistic implements StatisticInterface, Parameter {
    data?: {
        [key: string]: {
            [key: string]: TimeFrameServerState;
        };
    };
    constructor(data: any);
    static getDataDefault(): {
        [key: string]: {
            [key: string]: TimeFrameServerState;
        };
    };
    static getDataDescription(): string;
    static fromJson(data: any): Statistic;
    toJson(): any;
    clone(): Statistic;
}
