import { BaseCommand } from "../commands/command"; export declare abstract class SendCommand extends BaseCommand { run(): Promise; protected abstract getCommand(): Promise; protected abstract createWalletsWithBalance(flags: Record): Promise; protected abstract signTransactions(flags: Record, wallets: Record): Promise; protected abstract expectBalances(transactions: any, wallets: any): Promise; protected abstract verifyTransactions(transactions: any, wallets: any): Promise; }