export interface User { id: string; name: string; email: string; validated: boolean; active: boolean; type: 'OPERATOR' | 'ADMINISTRATOR'; }