import { COABalanceMonthQuarterTimeframe, ZeniDate } from '@zeniai/client-epic-state'; export interface PreComputedOption { label: string; value: COABalanceMonthQuarterTimeframe; } export declare const getLastDayOfPrevMonth: () => ZeniDate; export declare const findSelectedPreComputedOption: ({ options, selectedDate, }: { options: PreComputedOption[]; selectedDate: ZeniDate; }) => COABalanceMonthQuarterTimeframe | undefined; export declare const getPreComputedOptionValue: (value: COABalanceMonthQuarterTimeframe) => ZeniDate; export declare const getMonthIndex: (month: string) => number;