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