export default class MonthInput extends SelectInput {
    /**
     * Constructor for MonthInput class.
     *
     * Creates a select element with options for each month (1-12),
     * using localized month names based on the provided locale.
     *
     * @param {Intl.Locale} locale - The locale to use for month names.
     * @throws {Error} If the locale is not an instance of Intl.Locale.
     * @memberof MonthInput
     */
    constructor(locale: Intl.Locale);
    /**
     * Gets the currently selected month value (1-12).
     *
     * @returns {number} The selected month number.
     */
    get value(): number;
    #private;
}
import SelectInput from "./SelectInput.js";
//# sourceMappingURL=MonthInput.d.ts.map