import { MutableRefObject } from 'react';
declare function useHandleCursorPosition(inputRefs: MutableRefObject<HTMLInputElement>[], keysToHandle?: RegExp | {
[inputId: string]: RegExp[];
}): {
onKeyDown: (event: React.KeyboardEvent) => void;
};
export default useHandleCursorPosition;