import { FunctionComponent } from 'react';
import { ParsedDate } from '../../Types';

interface MonthSelectorProps {
    date: ParsedDate;
    onSelect: (month: number) => void;
}
declare const MonthSelector: FunctionComponent<MonthSelectorProps>;
export default MonthSelector;
