import React from 'react'; interface YearMonthSelectorProps { currentDate?: Date; onChange: (date?: Date) => void; minDate: Date; maxDate: Date; onlyYear?: boolean; languageCode: string; dateLocales?: Array<{ code: string; locale: any; format: string; }>; } declare const YearMonthSelector: React.FC; export default YearMonthSelector;