import { ZeniDate } from '../../zeniDayJS'; import { COABalanceTimeFrame } from '../coaBalance/coaBalance'; import { Month } from '../timePeriod'; /** * For the given `date` return start and end of the `timeframe` * @param date * @param firstMonthOfFY * @param timeframe */ export declare function getStartOfAndEndOfTimeframeForFY(date: ZeniDate, firstMonthOfFY: Month, timeframe: Exclude): { endOfTimeframeFY: ZeniDate; firstMonthOfFY: Month; startOfTimeframeFY: ZeniDate; timeframe: Exclude; };