import { StructType } from '@terradharitri/sdk-core'; import { WrappedLockedTokenType } from './wrapped.lock.token.types'; export declare class WrappedLockedTokenAttributes { lockedTokenNonce: number; constructor(init: { lockedTokenNonce: number; }); toJSON(): WrappedLockedTokenType; static fromDecodedAttributes(decodedAttributes: any): WrappedLockedTokenAttributes; static fromAttributes(attributes: string): WrappedLockedTokenAttributes; static getStructure(): StructType; }