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