export interface IIdentity { jwt: string; userId: string; username: string; expiresAt: number; role: 'admin' | 'user'; }