import Joi from 'joi'; import { FieldsFromServer } from './fields/fields-from-server'; declare const schema: Joi.ObjectSchema; interface Command { hashId: string; deviceHashId: string; commandTypeHashId: string; fields: FieldsFromServer; pinGroupHashId: string | null; userHashId: string | null; startAt: Date | null; delay: number; endAt: Date | null; channelIndices: number[]; email: string[] | null; createdAt?: Date; deletedAt?: Date | null; sentAt: Date | null; } export { schema, Command };