import { Tx } from "../codegen/cosmos/tx/v1beta1/tx"; import { Any } from "../codegen/google/protobuf/any"; import { EncodeObject, Parser } from "../types"; export declare const EncodeObjectUtils: { encode(msgs: EncodeObject[], getParserFromTypeUrl: (typeUrl: string) => Parser): Any[]; }; export declare const TxUtils: { toTxForGasEstimation(messages: EncodeObject[], publicKey: Any, getParserFromTypeUrl: (typeUrl: string) => Parser, sequence: bigint, memo?: string): Tx; };