export default YearDropdown;
declare function YearDropdown({ className, date, onChange, ariaLabel, ariaLabelledBy, }: {
    className: any;
    date: any;
    onChange: any;
    ariaLabel: any;
    ariaLabelledBy: any;
}): React.JSX.Element;
declare namespace YearDropdown {
    namespace propTypes {
        let className: PropTypes.Requireable<string>;
        let date: PropTypes.Validator<object>;
        let onChange: PropTypes.Validator<(...args: any[]) => any>;
        let ariaLabel: PropTypes.Requireable<string>;
        let ariaLabelledBy: PropTypes.Requireable<string>;
    }
}
import React from 'react';
import PropTypes from 'prop-types';
//# sourceMappingURL=YearDropdown.d.ts.map