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