UNPKG

344 BTypeScriptView Raw
1import { CalendarDay } from "./classes/index.js";
2import type { DateLib, DayPickerProps, Modifiers } from "./types/index.js";
3/**
4 * Return a function to get the modifiers for a given day.
5 *
6 * @private
7 */
8export declare function useGetModifiers(days: CalendarDay[], props: DayPickerProps, dateLib: DateLib): (day: CalendarDay) => Modifiers;