export interface DateRange {
    currentFrom: string;
    currentTo: string;
    prevFrom: string;
    prevTo: string;
}
export declare function getDateRangeByPeriod(period: 'today' | 'this_week' | 'this_month' | 'custom', fromDate?: string, toDate?: string): DateRange;
