import Joi from 'joi'; import { Locale } from './locale'; declare const schema: Joi.ObjectSchema; interface User { hashId: string; email: string | null; name: string; timezone: string; locale: Locale; phone: string | null; company: string | null; rights: string[]; twoFactorAuthenticationEnabled: boolean | null; } export { schema, User };