/// interface InputHandleKeyDownType { onEnterPress?: (e: React.KeyboardEvent) => void; onKeyDown?: (e: React.KeyboardEvent) => void; enterKeyHint?: React.InputHTMLAttributes['enterKeyHint']; nativeInputRef: React.RefObject; } export default function useInputHandleKeyDown({ onEnterPress, onKeyDown, nativeInputRef, enterKeyHint, }: InputHandleKeyDownType): (e: React.KeyboardEvent) => void; export {};