import Joi from 'joi'; declare const schema: Joi.ObjectSchema; interface Log { hashId: string; userHashId: string | null; objectType: string | null; objectHashId: string | null; subObjectType: string | null; subObjectHashId: string | null; action: string; diff: { old: any; new: any; } | null; createdAt: Date; } export { schema, Log };