import Joi from 'joi'; interface IdentityProviderRole { hashId: string; identityProviderHashId: string; clientHashId?: string; supplierHashId?: string; role: string; rights: string[]; } declare const schema: () => Joi.ObjectSchema; export { schema, IdentityProviderRole };