UNPKG

486 BTypeScriptView Raw
1import type { DateLib } from "../index.js";
2import type { LabelOptions } from "../lib/dateLib.js";
3import type { Modifiers } from "../types/index.js";
4/**
5 * The label for the day gridcell when the calendar is not interactive.
6 *
7 * @group Labels
8 * @see https://daypicker.dev/docs/translation#aria-labels
9 */
10export declare function labelGridcell(date: Date,
11/** The modifiers for the day. */
12modifiers?: Modifiers, options?: LabelOptions,
13/** @ignore */
14dateLib?: DateLib): string;