import type { ChangeEvent, FocusEvent } from "react"; interface UseSelectActionsProps { readonly onChange?: (newValue: string | number, event?: ChangeEvent) => void; readonly onBlur?: (event: FocusEvent) => void; readonly onFocus?: (event: FocusEvent) => void; } /** * Hook with actions on the Select component. */ export declare function useSelectActions({ onChange, onBlur, onFocus, }: UseSelectActionsProps): { handleChange: (event: ChangeEvent) => void; handleBlur: (event: FocusEvent) => void; handleFocus: (event: FocusEvent) => void; }; export {};