import { Ref } from 'vue'; export interface UseHolidayHighlightingOptions { currentMonth: Ref; currentYear: Ref; isDisplayHolidayDays: () => boolean; rootElement?: Ref; } export interface UseHolidayHighlightingResult { markHolidayDays: () => void; } /** * Composable partagé pour le marquage des jours fériés dans les VDatePicker * utilisé par CalendarMode et ComplexDatePicker. */ export declare const useHolidayHighlighting: (options: UseHolidayHighlightingOptions) => UseHolidayHighlightingResult;