import { FunctionComponent } from "react";
import { ParsedDate } from "../../../types/types";
interface MonthPickerProps {
    date: ParsedDate;
    onSelect: (year: number) => void;
}
declare const MonthPicker: FunctionComponent<MonthPickerProps>;
export default MonthPicker;
