export declare enum EventType { loginSuccess = 1, loginFailed = 2, totpFailed = 3, oauth2BadRedirect = 11 } export declare type LogEntry = { time: Date; userId: number; ip: string; eventType: EventType; };