UNPKG

418 BTypeScriptView Raw
1import type { Locale } from "../classes/DateLib.js";
2/**
3 * Format the month number for the dropdown option label.
4 *
5 * @defaultValue The localized month name
6 * @group Formatters
7 * @see https://daypicker.dev/docs/translation#custom-formatters
8 */
9export declare function formatMonthDropdown(
10/** The month number to format. */
11monthNumber: number,
12/** The locale to use for formatting. */
13locale: Locale): string;