import { StructType } from '@terradharitri/sdk-core'; import { LockedLpTokenType } from './simple.lock.token.types'; export declare class LockedLpTokenAttributes { lpTokenID: string | undefined; firstTokenID: string | undefined; firstTokenLockedNonce: number | undefined; secondTokenID: string | undefined; secondTokenLockedNonce: number | undefined; constructor(init?: Partial); toJSON(): LockedLpTokenType; static fromDecodedAttributes(decodedAttributes: any): LockedLpTokenAttributes; static fromAttributes(attributes: string): LockedLpTokenAttributes; static getStructure(): StructType; }