export declare type FarmTokenAttributesType = { rewardPerShare: string; enteringEpoch: number; compoundedReward: string; currentFarmAmount: string; identifier?: string; attributes?: string; }; export declare type FarmTokenAttributesTypeV1_3 = FarmTokenAttributesType & { originalEnteringEpoch: number; initialFarmingAmount: string; }; export declare type FarmTokenAttributesTypeV1_2 = FarmTokenAttributesTypeV1_3 & { aprMultiplier: number; lockedRewards: boolean; }; export declare type FarmTokenAttributesTypeV2 = FarmTokenAttributesType & { originalOwner: string; };