export default class ExchangeRates { /** * @internal * @param {HashgraphProto.proto.IExchangeRateSet} rateSet * @returns {ExchangeRates} */ static _fromProtobuf(rateSet: HashgraphProto.proto.IExchangeRateSet): ExchangeRates; /** * @param {Uint8Array} bytes * @returns {ExchangeRates} */ static fromBytes(bytes: Uint8Array): ExchangeRates; /** * @private * @param {object} props * @param {ExchangeRate} props.currentRate * @param {ExchangeRate} props.nextRate */ private constructor(); /** * @readonly */ readonly currentRate: ExchangeRate; /** * @readonly */ readonly nextRate: ExchangeRate; /** * @internal * @returns {HashgraphProto.proto.IExchangeRateSet} */ _toProtobuf(): HashgraphProto.proto.IExchangeRateSet; } import ExchangeRate from "./ExchangeRate.js"; import * as HashgraphProto from "@hashgraph/proto"; declare const proto: typeof HashgraphProto.proto; export {};