import { StructType } from '@terradharitri/sdk-core'; import { WrappedLpAttributesType } from './proxy.token.types'; export declare class WrappedLpTokenAttributes { identifier: string | undefined; attributes: string | undefined; lpTokenID: string | undefined; lpTokenTotalAmount: string | undefined; lockedAssetsInvested: string | undefined; lockedAssetsNonce: number | undefined; constructor(init?: Partial); toJSON(): WrappedLpAttributesType; static fromAttributes(attributes: string): WrappedLpTokenAttributes; static fromDecodedAttributes(decodedAttributes: any): WrappedLpTokenAttributes; static getStructure(): StructType; }