/** * Returns true if the key is pressed * * @remarks * This is a custom hook that can be used to detect a key press. * * @param targeKey - The key to check for * @param callback - The callback to call when the key is pressed * @param options - Options for the key * * @returns True if the key is pressed */ declare const useScoutKey: (targetKey: string, override?: boolean) => boolean; export default useScoutKey;