/// <reference types="react" />
import { IMonthPickerProps, IValueType, SingleDate } from '../../date-picker';
import { IFormComponentProps } from '../shared';
export declare type IFormMonthPickerFieldProps<T extends IValueType> = IFormComponentProps<SingleDate, Omit<IMonthPickerProps<T>, 'value'>>;
export declare const FormMonthPickerField: <T extends IValueType = "string">(props: IFormMonthPickerFieldProps<T>) => JSX.Element;
