import { UserEventType } from "./user-event-type"; import { User } from "./user"; export declare class UserEvent { readonly user: User; readonly type: UserEventType; constructor(user: User, type: UserEventType); }