import { StructType } from '@terradharitri/sdk-core'; import { LockedFarmTokenType } from './simple.lock.token.types'; export declare class LockedFarmTokenAttributes { farmType: string | undefined; farmTokenID: string | undefined; farmTokenNonce: number | undefined; farmingTokenID: string | undefined; farmingTokenLockedNonce: number | undefined; constructor(init?: Partial); toJSON(): LockedFarmTokenType; static fromDecodedAttributes(decodedAttributes: any): LockedFarmTokenAttributes; static fromAttributes(attributes: string): LockedFarmTokenAttributes; static getStructure(): StructType; }