import Joi from 'joi'; import { SupplierActivity } from './base'; import { Command } from '../command'; import { CommandType } from '../command-type'; interface ScheduleCommand extends SupplierActivity<'scheduleCommand'> { triggerData: Record | { command: Command; commandType: CommandType; }; } declare const schema: (apiVersion: number) => Joi.ObjectSchema; export { schema, ScheduleCommand };