import { StructType } from '@terradharitri/sdk-core'; import { FarmTokenAttributes } from './farm.token'; import { FarmTokenAttributesTypeV1_3 } from './farm.token.types'; export declare class FarmTokenAttributesV1_3 extends FarmTokenAttributes { readonly originalEnteringEpoch: number; readonly initialFarmingAmount: string; constructor(init: FarmTokenAttributesTypeV1_3); toJSON(): FarmTokenAttributesTypeV1_3; static fromDecodedAttributes(decodedAttributes: any): FarmTokenAttributesV1_3; static fromAttributes(attributes: string): FarmTokenAttributesV1_3; static getStructure(): StructType; }