export const AppEvents = { UserRegistered: 'user.registered', } as const; export interface UserRegisteredEvent { email: string; verificationUrl: string; }