UNPKG

396 BTypeScriptView Raw
1import type { FormatOptions } from "../lib/dateLib.js";
2import type { DateLib } from "../types/index.js";
3/**
4 * Format the day date shown in the day cell.
5 *
6 * @defaultValue `d` (e.g. "1")
7 * @group Formatters
8 * @see https://daypicker.dev/docs/translation#custom-formatters
9 */
10export declare function formatDay(date: Date, options?: FormatOptions,
11/** @ignore */
12dateLib?: DateLib): string;