import { Account, AccountLike, TokenAccount } from "@ledgerhq/types-live"; import { Transaction } from "./types"; declare function inferAccounts(account: Account, opts: Record): Account[] | TokenAccount[]; declare function inferTransactions(transactions: Array<{ account: AccountLike; transaction: Transaction; }>, opts: Record): Transaction[]; export default function makeCliTools(): { options: { name: string; type: StringConstructor; desc: string; }[]; inferAccounts: typeof inferAccounts; inferTransactions: typeof inferTransactions; }; export {}; //# sourceMappingURL=cli-transaction.d.ts.map