import Joi from 'joi'; import { Theme } from '../commons/theme'; declare const schema: Joi.ObjectSchema; interface Supplier { hashId: string; name: string; enforceTwoFactorAuthentication: boolean; theme: Theme | null; createdAt: Date; } export { schema, Supplier };