import { flags } from "@oclif/command"; import { SendCommand } from "../../shared/send"; export declare class TransferCommand extends SendCommand { static description: string; static flags: { recipient: flags.IOptionFlag; vendorField: flags.IOptionFlag; passphrase: flags.IOptionFlag; secondPassphrase: flags.IOptionFlag; nonce: import("@oclif/parser/lib/flags").IOptionFlag; number: import("@oclif/parser/lib/flags").IOptionFlag; amount: flags.IOptionFlag; transferFee: flags.IOptionFlag; skipProbing: import("@oclif/parser/lib/flags").IBooleanFlag; waves: import("@oclif/parser/lib/flags").IOptionFlag; host: flags.IOptionFlag; portAPI: import("@oclif/parser/lib/flags").IOptionFlag; }; protected getCommand(): any; protected createWalletsWithBalance(flags: Record): Promise; protected signTransactions(flags: Record, wallets: Record): Promise; protected expectBalances(transactions: any, wallets: any): Promise; protected verifyTransactions(transactions: any, wallets: any): Promise; }