UNPKG

512 BTypeScriptView Raw
1import { DateLib, type DateLibOptions } from "../classes/DateLib.js";
2/**
3 * The ARIA label for the month grid, that will be announced when entering the
4 * grid.
5 *
6 * @defaultValue `LLLL y` (e.g. "November 2022")
7 * @group Labels
8 * @see https://daypicker.dev/docs/translation#aria-labels
9 */
10export declare function labelGrid(date: Date, options?: DateLibOptions, dateLib?: DateLib): string;
11/**
12 * @ignore
13 * @deprecated Use {@link labelGrid} instead.
14 */
15export declare const labelCaption: typeof labelGrid;