import Joi from 'joi'; declare const schema: Joi.ObjectSchema; interface Label { hashId: string; name: string; color: string; createdAt: Date; updatedAt: Date; deletedAt?: Date | null; } export { schema, Label };