interface GetMonthNameParams { year?: number; limitToCurrentMonth?: boolean; } /** * Returns an array of month name strings up to the current month. * @param year: {number}, The year to get the months for. * @param limitToCurrentMonth = false: {boolean}, If set to true returns all the months for the current year. */ export declare function getMonthNames({ year, limitToCurrentMonth }?: GetMonthNameParams): string[]; export {};