import { StructType } from '@terradharitri/sdk-core'; import { DualYieldTokenType } from './dual.yield.token.types'; export declare class DualYieldTokenAttributes { lpFarmTokenNonce: number | undefined; lpFarmTokenAmount: string | undefined; stakingFarmTokenNonce: number | undefined; stakingFarmTokenAmount: string | undefined; constructor(init?: Partial); toJSON(): DualYieldTokenType; static fromDecodedAttributes(decodedAttributes: any): DualYieldTokenAttributes; static fromAttributes(attributes: string): DualYieldTokenAttributes; static getStructure(): StructType; }