/** * @namespace proto * @typedef {import("@hashgraph/proto").proto.ITransferList} HashgraphProto.proto.ITransferList * @typedef {import("@hashgraph/proto").proto.IAccountID} HashgraphProto.proto.IAccountID */ /** * @typedef {import("../long.js").LongObject} LongObject * @typedef {import("bignumber.js").default} BigNumber */ /** * @augments {ObjectMap} */ export default class HbarTransferMap extends ObjectMap { /** * @param {HashgraphProto.proto.ITransferList} transfers * @returns {HbarTransferMap} */ static _fromProtobuf(transfers: HashgraphProto.proto.ITransferList): HbarTransferMap; constructor(); } export namespace HashgraphProto { namespace proto { type ITransferList = import("@hashgraph/proto").proto.ITransferList; type IAccountID = import("@hashgraph/proto").proto.IAccountID; } } export type LongObject = import("../long.js").LongObject; export type BigNumber = import("bignumber.js").default; import AccountId from "./AccountId.js"; import Hbar from "../Hbar.js"; import ObjectMap from "../ObjectMap.js";