declare type FormatOptions = '2-digit' | 'long' | 'short' | 'narrow'; /** * Returns the months for the given locale and format. * Defaults to en-US/long */ declare const getMonths: (locale?: string, format?: FormatOptions) => string[]; export default getMonths;