interface MonthRangeValue { /** 0 - 11, index of the month, used to retrieve month label from the array */ month: number; /** Number of weeks displayed previously */ position: number; /** Number of weeks in the month */ size: number; } export declare function getMonthsRange(weeksData: (string | null)[][]): MonthRangeValue[]; export {};