import type { DatepickerOptions, LocaleConfig } from '../core/types'; export interface MonthGridCallbacks { onMonthClick: (month: number) => void; } export declare class MonthGridView { private opts; private locale; private callbacks; readonly root: HTMLElement; constructor(opts: DatepickerOptions, locale: LocaleConfig, callbacks: MonthGridCallbacks); render(currentMonth: number, currentYear: number): void; focus(): void; }