UNPKG

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