export declare const NUM_MONTHS = 12; /** * Generates an array of month names according to the given or default locale * * @param {string} [locale] locale for generating month names * @param {boolean} [short] whether to return short month names * @return {string[]} array of month names */ export declare function getMonthNames(locale: string, short?: boolean): any[];