I have a test file for testing an upgradable smart contract on zkSync by looking at the docs here. I'm getting a typescript error on this line
await hre.zkUpgrades.deployProxy(deployer.zkWallet, contract, [42]).then((r) => r.deployed()); error
Property 'zkUpgrades' does not exist on type 'HardhatRuntimeEnvironment'.ts(2339)
The code runs fine but how do I get rid of the typescript complaint.