import { UserStatusUnion } from '@airgram-dev/core'; /** The user went online or offline */ export declare class UpdateUserStatusBaseModel { _: 'updateUserStatus'; /** User identifier */ userId: number; /** New status of the user */ status: UserStatusUnion; }