/** * @namespace proto * @typedef {import("@hashgraph/proto").proto.SubType} HashgraphProto.proto.SubType */ declare class FeeDataType { /** * @internal * @param {number} code * @returns {FeeDataType} */ static _fromCode(code: number): FeeDataType; /** * @hideconstructor * @internal * @param {number} code */ constructor(code: number); /** @readonly */ readonly _code: number; /** * @returns {string} */ toString(): string; /** * @returns {HashgraphProto.proto.SubType} */ valueOf(): HashgraphProto.proto.SubType; } declare namespace FeeDataType { const Default: FeeDataType; const TokenFungibleCommon: FeeDataType; const TokenNonFungibleUnique: FeeDataType; const TokenFungibleCommonWithCustomFees: FeeDataType; const TokenNonFungibleUniqueWithCustomFees: FeeDataType; const ScheduleCreateContractCall: FeeDataType; } export default FeeDataType; export namespace HashgraphProto { namespace proto { type SubType = import("@hashgraph/proto").proto.SubType; } }