export interface YearMonth { year: number; month: number; } export declare function nextMonth(yearMonth: YearMonth): YearMonth; export declare function prevMonth(yearMonth: YearMonth): YearMonth;