export interface Month { label: string; value: number; } export interface CalendarMonths { [key: string]: Month[]; } export declare const months: CalendarMonths;