/// import BaseInput, { BaseInputProps, BaseInputState, DateRelatedProps, DisableValuesProps, MinMaxValueProps } from './BaseInput'; export declare type MonthInputProps = BaseInputProps & DateRelatedProps & DisableValuesProps & MinMaxValueProps; export declare type MonthInputOnChangeData = MonthInputProps; declare class MonthInput extends BaseInput { static readonly defaultProps: { dateFormat: string; icon: string; value: string; inline: boolean; localization: string; }; static readonly propTypes: { maxDate: import("prop-types").Requireable; minDate: import("prop-types").Requireable; disable: import("prop-types").Requireable; dateFormat: import("prop-types").Requireable; initialDate: import("prop-types").Requireable; value: import("prop-types").Validator; onChange: import("prop-types").Requireable<(...args: any[]) => any>; closable: import("prop-types").Requireable; inline: import("prop-types").Requireable; icon: import("prop-types").Requireable; iconPosition: import("prop-types").Requireable; onClear: import("prop-types").Requireable<(...args: any[]) => any>; clearable: import("prop-types").Requireable; clearIcon: import("prop-types").Requireable; popupPosition: import("prop-types").Requireable; closeOnMouseLeave: import("prop-types").Requireable; mountNode: import("prop-types").Requireable; inlineLabel: import("prop-types").Requireable; pickerWidth: import("prop-types").Requireable; pickerStyle: import("prop-types").Requireable; duration: import("prop-types").Requireable; animation: import("prop-types").Requireable; localization: import("prop-types").Requireable; hideMobileKeyboard: import("prop-types").Requireable; }; constructor(props: any); render(): JSX.Element; private getPicker; private handleSelect; } export default MonthInput;