import { ComputedRef } from 'vue'; import { DateObjectValue } from '../types'; export interface TodayButtonProps { displayTodayButton?: boolean; displayRange?: boolean; } export interface TodayButtonReturn { todayInString: ComputedRef; selectToday: (selectedDates: { value: DateObjectValue; }) => void; headerDate: ComputedRef; } /** * Composable pour gérer le bouton "Aujourd'hui" dans le CalendarMode */ export declare function useTodayButton(props: TodayButtonProps): TodayButtonReturn;