type User = { email: string; phone: string; fullName: string; photo?: string; language?: 'EN' | 'DE' | 'RU'; password?: string; cashboxIds?: string[]; locationIds?: string[]; hoursContract?: number; hoursWorked?: number; access?: boolean; roleId: string; allowEmailNotifications?: boolean; allowPushNotifications?: boolean; ordersNotifications?: boolean; certificatesNotifications?: boolean; marketingNotifications?: boolean; technicalNotifications?: boolean; importantNotifications?: boolean; needChangePassword?: boolean; lastDevice?: string; lastVisit?: number; profileId?: string; id?: string; uid?: string; }; export { User };