import { StructType } from '@terradharitri/sdk-core'; import { DcdtTokenPayment } from '../dcdt-token-payment'; import { UnstakePairType } from './unstake.pair.type'; export declare class UnstakePair { readonly unlockEpoch: number; readonly lockedTokens: DcdtTokenPayment; readonly unlockedTokens: DcdtTokenPayment; constructor(init: UnstakePairType); toJSON(): UnstakePairType; static fromDecodedAttributes(decodedAttributes: any): UnstakePair; static fromAttributes(attributes: string): UnstakePair; static getStructure(): StructType; }