/** * The useKeyPressDetect function is a custom hook that detects if a specific key has been pressed. * * @example const isFPressed = useKeyPressDetect("f") * * @param targetKey string Specify which key the user is pressing * * @return A boolean value, which is the state of whether a key is pressed or not * */ export declare const useKeyPressDetect: (targetKey: string) => boolean;