import { StructType } from '@terradharitri/sdk-core'; import { WrappedFarmAttributesType } from './proxy.token.types'; export declare class WrappedFarmTokenAttributes { identifier: string | undefined; attributes: string | undefined; farmTokenID: string | undefined; farmTokenNonce: number | undefined; farmTokenAmount: string | undefined; farmTokenIdentifier: string | undefined; farmingTokenID: string | undefined; farmingTokenNonce: number | undefined; farmingTokenAmount: string | undefined; constructor(init?: Partial); toJSON(): WrappedFarmAttributesType; static fromDecodedAttributes(decodedAttributes: any): WrappedFarmTokenAttributes; static fromAttributes(attributes: string): WrappedFarmTokenAttributes; static getStructure(): StructType; }