import { type SyntheticEvent } from 'react'; /** * Hook to handle input click actions for DateRangePickerTrigger. * Manages popover open/close based on which input is clicked and tracks the last clicked input. * * @param disableAutoOpen - Whether the input will not open the popover. * * @param popoverOpenFunction - Function to open the popover with event parameter. * * @returns * handleInputClick: (inputType: 'start' | 'end', userOnClick?: React.MouseEventHandler) => (event: React.MouseEvent) => void */ export declare function useDateRangeTriggerInputClick(disableAutoOpen: boolean, popoverOpenFunction?: (event?: SyntheticEvent) => void): { handleInputClick: (inputType: "start" | "end", userOnClick?: React.MouseEventHandler) => (event: React.MouseEvent) => void; };