import type { Account, AccountLike, TokenAccount } from "@ledgerhq/types-live";
import type { Transaction } from "../../types";
export declare const getAccountInfo: ({ account, parentAccount, transaction, }: {
    account: AccountLike;
    parentAccount?: Account | null;
    transaction?: Transaction | null;
}) => {
    mainAccount: Account;
    subAccount: TokenAccount | null | undefined;
    isTokenType: boolean;
    tokenAccountTxn: boolean;
};
//# sourceMappingURL=account.d.ts.map