UNPKG

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