import { DateStr } from './dateStr'; export type MonthNumber = number; export type Month = { month: MonthNumber; year: number; }; export declare const getCurrentMonth: (now?: Date) => Month; export declare const monthOfDate: (dateStr: DateStr) => Month; export declare const addMonths: ({ month, year }: Month, months: number) => Month; export declare const compareMonths: (a: Month, b: Month) => number; export declare const areMonthsEqual: (a: Month, b: Month) => boolean; export declare const monthToStr: ({ month, year }: Month) => string;