import type { CryptoCurrency } from "@ledgerhq/types-cryptoassets"; import type { Account, TokenAccount } from "@ledgerhq/types-live"; import { APITransaction } from "./api/api-types"; import { PaymentCredential, Token } from "./types"; export declare const getTokenAssetId: ({ policyId, assetName, }: { policyId: string; assetName: string; }) => string; export declare const decodeTokenAssetId: (id: string) => { policyId: string; assetName: string; }; export declare const decodeTokenCurrencyId: (id: string) => { parentCurrencyId: string; type: string; assetId: string; }; export declare function buildSubAccounts({ initialAccount, parentAccountId, parentCurrency, newTransactions, tokens, accountCredentialsMap, }: { initialAccount: Account | undefined; parentAccountId: string; parentCurrency: CryptoCurrency; newTransactions: Array; tokens: Array; accountCredentialsMap: Record; }): Promise>; //# sourceMappingURL=buildSubAccounts.d.ts.map