import type { TokenCurrency } from "./types"; export type FrameworkCryptoAssetsStore = { findTokenById(tokenId: string): Promise; findTokenByAddressInCurrency(address: string, currencyId: string, tokenIdentifier?: string): Promise; getTokensSyncHash(currencyId: string): Promise; }; export declare function setCryptoAssetsStore(store: FrameworkCryptoAssetsStore): void; export declare function getCryptoAssetsStore(): FrameworkCryptoAssetsStore; //# sourceMappingURL=cryptoAssetsStore.d.ts.map