import { Point } from './statistics/Point';
import { Tag } from './statistics/Tag';
import { DeviceStatisticsUnitEnum } from '../DeviceStatisticsUnitEnum';
/** Device Statistics Datapoints */
export interface Statistics {
    /** Name of the serie */
    name: string;
    /** List of point */
    points: Point[];
    /** List of tags */
    tags: Tag[];
    /** Unit of the serie */
    unit: DeviceStatisticsUnitEnum;
}
//# sourceMappingURL=Statistics.d.ts.map