import { Locale, Theme } from '../../types';
type MonthControlProps = {
    currentDate: string;
    onDateChange: (newDate: string) => void;
    theme?: Theme;
    accentColor: string;
    lang: Locale;
};
declare function MonthControl({ currentDate, onDateChange, theme, accentColor, lang, }: MonthControlProps): import("react/jsx-runtime").JSX.Element;
export default MonthControl;
