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