import Joi from 'joi'; import { FieldsFromServer } from './fields/fields-from-server'; declare const schema: Joi.ObjectSchema; interface Pin { hashId: string; pinGroupHashId: string; name: string; fields: FieldsFromServer; deviceFields: FieldsFromServer; level: 0 | 1 | 2; typeKey: string | null; edgeHashId: string | null; nodeHashId: string | null; deletedAt: Date | null; } export { schema, Pin };