import { StructType } from '@terradharitri/sdk-core'; import { UserEntryType } from './metabonding.types'; export declare class UserEntry { tokenNonce: number | undefined; stakedAmount: string | undefined; unstakedAmount: string | undefined; unbondEpoch: number | undefined; constructor(init?: Partial); toJSON(): UserEntryType; static getStructure(): StructType; }