export default class Duration {
private _duration;
constructor(durationInMilliseconds: number);
get inMilliseconds(): number;
get inSeconds(): number;
get inMinutes(): number;
get inHours(): number;
static getDurationBetween: (from: Date, to: Date) => Duration;
}