import { StructType } from '@terradharitri/sdk-core'; import { StakingFarmTokenAttributesType, StakingFarmTokenType } from './staking.farm.token.types'; export declare class StakingFarmTokenAttributes { type: StakingFarmTokenType; rewardPerShare: string | undefined; compoundedReward: string | undefined; currentFarmAmount: string | undefined; constructor(init?: Partial); toJSON(): StakingFarmTokenAttributesType; static fromDecodedAttributes(decodedAttributes: any): StakingFarmTokenAttributes; static fromAttributes(attributes: string): StakingFarmTokenAttributes; static getStructure(): StructType; }