/** * Tracks whether a specific keyboard key is currently held down. * * @param targetKey - The `KeyboardEvent.key` value to watch (e.g. `"Enter"`, `"Shift"`) * @returns `true` while the key is pressed, `false` otherwise * * @example * const shiftHeld = useKeyPress("Shift"); */ export declare const useKeyPress: (targetKey: string) => boolean; //# sourceMappingURL=useKeyPress.d.ts.map