import { Command } from '@oclif/command'; import * as Parser from '@oclif/parser'; export default class SetContract extends Command { static description: string; static args: { name: string; required: boolean; help: string; }[]; static flags: { clear: Parser.flags.IBooleanFlag; abiOnly: Parser.flags.IBooleanFlag; wasmOnly: Parser.flags.IBooleanFlag; disableInline: Parser.flags.IBooleanFlag; }; run(): Promise; }