import { StructType } from '@terradharitri/sdk-core'; import { StakingFarmTokenType, UnbondFarmTokenAttributesType } from './staking.farm.token.types'; export declare class UnbondFarmTokenAttributes { type: StakingFarmTokenType; unlockEpoch: number | undefined; constructor(init?: Partial); toJSON(): UnbondFarmTokenAttributesType; static fromDecodedAttributes(decodedAttributes: any): UnbondFarmTokenAttributes; static fromAttributes(attributes: string): UnbondFarmTokenAttributes; static getStructure(): StructType; }