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