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