/**
 * 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
 */
declare function useKeyPress(targetKey: string): boolean;

export { useKeyPress };
