import type { Dayjs } from 'dayjs';
declare const dateRange: (start: Dayjs, end: Dayjs, jump?: 'day' | 'month') => Dayjs[];
export default dateRange;
