import { UnstakePair } from '../../attributes-decoder/token-unstake/unstake.pair'; import { RawEventType } from '../generic.types'; import { RawEvent } from '../raw.event'; import { UserUnlockedTokensType } from './token.unstake.types'; import { UserUnlockedTokensTopics } from './unlocked.tokens.topics'; export declare class UserUnlockedTokensEvent extends RawEvent { readonly decodedTopics: UserUnlockedTokensTopics; readonly unstakeTokens: UnstakePair[]; constructor(init: RawEventType); toJSON(): UserUnlockedTokensType; private decodeEvent; }