import type { DateFrameworkType } from "@salt-ds/date-adapters"; import type { FocusEventHandler, KeyboardEventHandler, MouseEventHandler } from "react"; export declare function useFocusManagement({ date, }: { date: TDate; }): { handleClick: MouseEventHandler; handleKeyDown: KeyboardEventHandler; handleFocus: FocusEventHandler; };