import { FieldBaseProps } from '../base/fieldBase'; /** * Props for {@link MonthField}. * Extends {@link FieldBaseProps}. * * @category MonthField */ export type MonthFieldProps = Omit; /** * Month field component used to enter month and year values. * * Use for selecting calendar months in forms. * * @category MonthField * @function * @param props - All field props inherited from {@link FieldBase}. * * @example * * * @example * */ export declare const MonthField: import('react').ForwardRefExoticComponent>;