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