import Joi from 'joi'; import { FieldsFromServer } from './fields/fields-from-server'; declare const schema: Joi.ObjectSchema; interface PinGroup { hashId: string; geometry: { type: 'Point'; coordinates: [number, number]; } | null; name: string; symbolKey: string; deviceFields: FieldsFromServer; fields: FieldsFromServer; deviceLinkHashId: string | null; level: 0 | 1 | 2; mapLayer: string; mostRecentMeasurementAt: Date | null; deletedAt: Date | null; } export { schema, PinGroup };