import { StructType } from '@terradharitri/sdk-core'; import { FarmTokenAttributesType } from './farm.token.types'; export declare class FarmTokenAttributes { readonly rewardPerShare: string; readonly enteringEpoch: number; readonly compoundedReward: string; readonly currentFarmAmount: string; readonly identifier?: string; readonly attributes?: string; constructor(init: FarmTokenAttributesType); toJSON(): FarmTokenAttributesType; static fromDecodedAttributes(decodedAttributes: any): FarmTokenAttributes; static fromAttributes(attributes: string): FarmTokenAttributes; static getStructure(): StructType; }