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