import Joi from 'joi'; import { SupplierActivity } from './base'; interface IncreaseReportingCounter extends SupplierActivity<'increaseReportingCounter'> { triggerData: { at?: Date; }; } declare const schema: Joi.ObjectSchema; export { schema, IncreaseReportingCounter };