import { MsgExecuteContract } from "cosmjs-types/cosmwasm/wasm/v1/tx"; import { Event, Attribute } from "@cosmjs/tendermint-rpc/build/tendermint37"; import { Tx } from "../tx"; import { JsonObject } from "@cosmjs/cosmwasm-stargate"; export declare const parseRpcEvents: (events: readonly Event[]) => Event[]; export declare const parseTxToMsgExecuteContractMsgs: (tx: Tx) => MsgExecuteContract[]; export declare const decodeProto: (value: JsonObject) => any; export declare const parseWasmEvents: (events: readonly Event[]) => { [key: string]: string; }[]; export declare const parseTxToMsgsAndEvents: (indexedTx: Tx, eventsParser?: (events: readonly Event[]) => Attribute[]) => { attrs: { [key: string]: string; }[] | Attribute[]; message: any; }[];