import { Account, BroadcastMode, GasLimits, GasPrice, OfflineSigner } from "@cosmjs/launchpad"; import { CosmosMsg } from "./cosmosmsg"; import { CosmWasmFeeTable, ExecuteResult, SigningCosmWasmClient } from "./signingcosmwasmclient"; export declare class Cw1CosmWasmClient extends SigningCosmWasmClient { readonly cw1ContractAddress: string; constructor(apiUrl: string, signerAddress: string, signer: OfflineSigner, cw1ContractAddress: string, gasPrice?: GasPrice, gasLimits?: Partial>, broadcastMode?: BroadcastMode); getAccount(address?: string): Promise; canSend(msg: CosmosMsg, address?: string): Promise; executeCw1(msgs: readonly CosmosMsg[], memo?: string): Promise; }