export default class FeeSchedules { /** * @param {Uint8Array} bytes * @returns {FeeSchedules} */ static fromBytes(bytes: Uint8Array): FeeSchedules; /** * @internal * @param {HashgraphProto.proto.ICurrentAndNextFeeSchedule} feeSchedules * @returns {FeeSchedules} */ static _fromProtobuf(feeSchedules: HashgraphProto.proto.ICurrentAndNextFeeSchedule): FeeSchedules; /** * @param {object} [props] * @param {FeeSchedule} [props.currentFeeSchedule] * @param {FeeSchedule} [props.nextFeeSchedule] */ constructor(props?: { currentFeeSchedule?: FeeSchedule | undefined; nextFeeSchedule?: FeeSchedule | undefined; } | undefined); current: FeeSchedule | undefined; next: FeeSchedule | undefined; /** * @internal * @returns {HashgraphProto.proto.ICurrentAndNextFeeSchedule} */ _toProtobuf(): HashgraphProto.proto.ICurrentAndNextFeeSchedule; /** * @returns {Uint8Array} */ toBytes(): Uint8Array; } import FeeSchedule from "./FeeSchedule.js"; import * as HashgraphProto from "@hashgraph/proto";