interface MonthDateBtnProps {
    selectedDate: Date;
    onChange(value: Date): void;
}
declare const MonthDateBtn: ({ selectedDate, onChange }: MonthDateBtnProps) => import("react/jsx-runtime").JSX.Element;
export { MonthDateBtn };
