import React from "react"; import type { CalendarTheme } from "../types/theme"; export interface MonthPickerProps { currentMonth: number; currentYear: number; onMonthSelect: (month: number) => void; locale?: string; theme?: CalendarTheme; } export declare function MonthPicker({ currentMonth, currentYear, onMonthSelect, locale, theme, }: MonthPickerProps): React.JSX.Element;