import { FC } from "react";
import { CaptionProps } from "react-day-picker";
interface ICustomNavBarElementProps extends CaptionProps {
    showMonthPicker: boolean;
    onChangeDirection?: (direction: boolean) => void;
    onMonthChange?: (month: Date) => void;
    onClick?: () => void;
    month: Date;
}
export declare const CustomNavBarElement: FC<ICustomNavBarElementProps>;
export {};
//# sourceMappingURL=CustomNavBarElement.d.ts.map