import { IAptosAccountAssetManager } from './interfaces/IAptosAccountAssetManager'; export declare class AptosAccountAssetManager implements IAptosAccountAssetManager { private address; private chainRpcUrl; private aptosClient; constructor(address: string, options: { chainRpcUrl: string; }); getAddress(): string; getCoinBalance(coinType: string): Promise; getAptosBalance(): Promise; getChainRpcUrl(): string; setChainRpcUrl(chainRpcUrl: string): void; }