import { DateRangeSelectValue } from '../types/dateRange';
export type DateRangeWithTimeSpan = {
    startDate: Date;
    endDate: Date;
    timeSpanInSeconds: number;
};
export declare function mapDateRangeSelectValueToDateRange(source: DateRangeSelectValue): DateRangeWithTimeSpan | null;
