import { Command, flags } from '@oclif/command'; export default class MultisigPropose extends Command { static description: string; static args: { name: string; required: boolean; help: string; }[]; static flags: { [k: string]: flags.IFlag; }; run(): Promise; }