/**
* Hook that detects when a specific key is pressed
* @param targetKey - The key to detect (e.g., "Enter", "Escape", "a")
* @returns boolean indicating if the key is currently pressed
*/declarefunctionuseKeyPress(targetKey: string): boolean;
export { useKeyPress };