import React from 'react'; import { InputProps } from '@uiw/react-input'; import { PopoverProps } from '@uiw/react-popover'; import { IProps } from '@uiw/utils'; import { DatePickerCaptionProps } from '@uiw/react-date-picker'; import './style/index.less'; export interface MonthPickerProps extends IProps, Omit { popoverProps?: PopoverProps; pickerCaptionProps?: DatePickerCaptionProps; value?: Date | string; format?: string; monthLabel?: string[]; allowClear?: boolean; onChange?: (date?: Date, formatDate?: string) => void; } export default function MonthPicker(props: MonthPickerProps): React.JSX.Element;