import { Any } from "../../proto/google/protobuf/any.cjs";
//#region src/wallet/utility/utility.d.ts
/**
 * Converts a fund map to a concatenated string representation ("<value><denomination>")
 * @param funds
 */
declare const fundsToCoins: (funds?: Map<string, number>) => string;
/**
 * This is constant for now,
 * but should be fetched as an estimation
 * from the Tendermint node once this functionality
 * is available.
 *
 * Each package call / deployment
 * costs a fixed 1 GNOT
 * https://github.com/gnolang/gno/issues/649
 */
declare const defaultTxFee = "1000000ugnot";
/**
 * Decodes (and unrolls) Transaction messages into full objects
 * @param {Any[]} messages the encoded transaction messages
 */
declare const decodeTxMessages: (messages: Any[]) => unknown[];
//#endregion
export { decodeTxMessages, defaultTxFee, fundsToCoins };
//# sourceMappingURL=utility.d.cts.map