import { MaybeRef, Ref } from 'vue'; /** * Custom hook to handle keyboard events for a slider thumb. * * @param thumb The thumb element of the slider. * @param value The current value of the slider. * @param minSelectableValue The minimum currently selectable value for the slider. * @param maxSelectableValue The maximum currently selectable value for the slider. * @param step The step displacement for the slider. * @param setValue The function to set the value of the slider. */ export default function useThumbKeyboard(thumb: MaybeRef, value: Ref, minSelectableValue: MaybeRef, maxSelectableValue: MaybeRef, step: MaybeRef, setValue: (value: number) => void): void;