/** * Compute the time difference between two given Dates in Milliseconds * Assumes that the second date in the tuple (to) is larger than the first one (from) */ export declare function getTimeRange(resolution: [Date, Date]): number;