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