1 | import type { DateLib } from "../index.js";
|
2 | import type { LabelOptions } from "../lib/dateLib.js";
|
3 | import 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 | */
|
10 | export declare function labelGridcell(date: Date,
|
11 | /** The modifiers for the day. */
|
12 | modifiers?: Modifiers, options?: LabelOptions,
|
13 | /** @ignore */
|
14 | dateLib?: DateLib): string;
|