import React from "react";
interface Props {
    clickMonth: (month: number) => void;
}
declare const Months: React.FC<Props>;
export default Months;
