export declare function parseDateTimeInterval(interval: {
    dateTimeFrom: string;
    dateTimeTo: string;
}, label: string): {
    from: Date;
    to: Date;
};
export declare function assertRangeWithinLimit(from: Date, to: Date): void;
export declare function buildDigestChunks(from: Date, to: Date): {
    from: string;
    to: string;
}[];
