import { ScheduleTypes, TimeframeTick } from '@zeniai/client-epic-state'; import { MonthAndYears } from '../../../formElements/monthSelectorField/MonthSelector'; /** * This function gets a list of months and years that the selection can range from. * Only start year from startYear month) to end year month is acceptable. * for the end year, all months will be allowed - future dates are allowed. * Note this logic might change based on the ScheduleTabType * @param allowedTimeframe * @returns */ export declare const getMonthsAndYearsForAllowedTimeframe: (allowedTimeframe: TimeframeTick) => MonthAndYears; export declare const getOptionsForScheduleTab: (scheduleType: ScheduleTypes) => number[];