import Joi from 'joi'; declare const identifierExample = "function (command) {\n return JSON.stringify({\n hashId: command.hashId,\n commandTypeHashId: command.commandTypeHashId,\n startAt: command.startAt,\n endAt: command.endAt,\n settings: command.settings,\n });\n}"; declare const schema: Joi.ObjectSchema; interface SupplierWebhook { hashId: string; name: string; createdAt: Date; } export { schema, SupplierWebhook, identifierExample };