declare type UnixTimestampMilliseconds = number;
export interface DataItemHistoryOptionsInterface {
    live?: boolean;
    historyType?: "relative" | "absolute";
    start?: UnixTimestampMilliseconds;
    end?: UnixTimestampMilliseconds;
    value?: number;
    unit?: "day" | "week" | "month" | "year";
    resulution?: number;
}
export {};
