import Joi from 'joi'; declare const schema: Joi.ObjectSchema; interface UserEnvironmentSettings { notificationLevel: 0 | 1 | 2 | null; defaultAnalyticsPanelHashId: string | null; } export { schema, UserEnvironmentSettings };