import { EncodeObject, Coin } from '@cosmjs/proto-signing'; import { DeliverTxResponse, GasPrice, StdFee, MsgTransferEncodeObject } from '@cosmjs/stargate'; import LocalWallet from './modules/local-wallet'; export declare class NobleClient { private wallet?; private restEndpoint; private stargateClient?; private defaultClientMemo?; constructor(restEndpoint: string, defaultClientMemo?: string); get isConnected(): boolean; connect(wallet: LocalWallet): Promise; getAccountBalances(): Promise; getAccountBalance(denom: string): Promise; IBCTransfer(message: MsgTransferEncodeObject): Promise; send(messages: EncodeObject[], gasPrice?: GasPrice, memo?: string): Promise; simulateTransaction(messages: readonly EncodeObject[], gasPrice?: GasPrice, memo?: string): Promise; } //# sourceMappingURL=noble-client.d.ts.map