import React from "react";
interface DateNavigationProps {
    children?: React.ReactNode;
    className?: string;
    nextMonth: () => void;
    prevMonth: () => void;
    nextYear: () => void;
    prevYear: () => void;
}
declare const DateNavigation: ({ className, children, nextMonth, prevMonth, nextYear, prevYear, }: DateNavigationProps) => React.JSX.Element;
export default DateNavigation;
