import { CompareWith, TimeframeType } from '../components/HeaderMetric/HeaderMetricHelpers'; export declare const isCurrentDateUsedForComparison: (timeframe?: TimeframeType, compareWith?: CompareWith) => boolean | undefined; type ComparisonDatesType = { startDate: string; endDate: string; timeframe: TimeframeType & { compareDisplay?: string; }; compareWith?: CompareWith; hasNoCurrentMonthData?: boolean; }; export declare const getComparisonDates: ({ startDate, endDate, timeframe, compareWith, hasNoCurrentMonthData, }: ComparisonDatesType) => { startDate: string; endDate: string; } | undefined; export {};