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