import { StructType } from '@terradharitri/sdk-core'; import { LockedTokenType } from './simple.lock.token.types'; export declare class LockedTokenAttributes { originalTokenID: string | undefined; originalTokenNonce: number | undefined; unlockEpoch: number | undefined; constructor(init?: Partial); toJSON(): LockedTokenType; static fromDecodedAttributes(decodedAttributes: any): LockedTokenAttributes; static fromAttributes(attributes: string): LockedTokenAttributes; static getStructure(): StructType; }