interface CalendarNavigationProps {
    currentMonthName: string;
    incrementMonth: () => void;
    decrementMonth: () => void;
}
export declare function CalendarNavigation({ currentMonthName, incrementMonth, decrementMonth, }: CalendarNavigationProps): import("react/jsx-runtime").JSX.Element;
export {};
