import { ISuiAccountAssetManager } from './interfaces'; export declare class SuiAccountAssetManager implements ISuiAccountAssetManager { private address; private chainRpcUrl; private suiClient; /** * Constructs a new instance of the AccountAssetManager class. * * @param {string} address - The address of the account. * @param {object} options - The options for the account asset manager. * @param {string} options.chainRpcUrl - The URL of the chain RPC. */ constructor(address: string, options: { chainRpcUrl: string; }); getAddress(): string; getCoinBalance(coinType: string): Promise; getSuiBalance(): Promise; getChainRpcUrl(): string; setChainRpcUrl(chainRpcUrl: string): void; }