import { CONTRACT_FUNCTION_TASK_PARAMETERS } from './utils/contract-functions'; export declare const TASK: { readonly name: "Certificate"; readonly description: "Interact with the Certificate contract"; readonly run: ({ func, args, from, }: { func: string; from?: number | undefined; args?: unknown[] | undefined; }, hre: CustomHardHatRuntimeEnvironment) => Promise; readonly 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; }; }; };