/** * Keyboard keypress aware hook * * @param {string} targetKey string key pressed * @returns {boolean} true if the key pressed */ declare const useKeyPress: (targetKey: string) => boolean; export default useKeyPress;