import Joi from 'joi'; interface IdentityProvider { hashId: string; name: string; url: string; ssoClientId: string; } declare const schema: () => Joi.ObjectSchema; export { schema, IdentityProvider };