import React from "react"; interface MonthPickerProps { disabled?: boolean; clearable?: boolean; value?: Date; onChange?: (value: any) => void; minDate?: Date; maxDate?: Date; renderView: (inputProps: React.HtmlHTMLAttributes, clearButtonProps: React.ButtonHTMLAttributes) => any; } declare const MonthPicker: (props: MonthPickerProps) => JSX.Element; export default MonthPicker;