import { FC } from 'react';
import { CalendarType } from '../../../index';
interface CalendarNavigationProps {
    locale: Locale;
    month: Date;
    mode: CalendarType;
    onChangeMonth: (month: Date) => void;
    onChangeMode: (mode: CalendarType) => void;
}
declare const CalendarNavigation: FC<CalendarNavigationProps>;
export default CalendarNavigation;
