import { DateLabelFormat } from '../../types'; interface GetMonthsListInput { locale: string; format: DateLabelFormat; } interface MonthData { month: number; name: string; } export declare function getMonthsList({ locale, format }: GetMonthsListInput): MonthData[]; export {};