import '@nomiclabs/hardhat-ethers'; import '@/plugins/fireblocks'; import { Contract } from 'ethers'; export declare const CONTRACT_FUNCTION_TASK_PARAMETERS: { readonly func: { readonly name: "func"; readonly description: "the function to call"; readonly defaultValue: undefined; readonly type: import("hardhat/types").CLIArgumentType; }; readonly from: { readonly name: "from"; readonly description: "the index of the signer account to use"; readonly defaultValue: 0; readonly type: import("hardhat/types").CLIArgumentType; }; readonly args: { readonly name: "args"; readonly description: "the args to pass the function"; readonly defaultValue: undefined; readonly type: undefined; }; }; export declare const CONTRACT_FUNCTION_TASK_RUN: ({ contractAddress, contractAbi, from, func, args, hre, }: { contractAddress: ConstructorParameters[0]; contractAbi: ConstructorParameters[1]; from: number; func: string; args: unknown[]; hre: CustomHardHatRuntimeEnvironment; }) => Promise;