import { Relation } from 'typeorm'; import { BeaconBleMesh } from './beaconBleMesh'; import { DeviceBleMesh } from './deviceBleMesh'; export declare class BLEMesh { id: number; clientId: number; name: string; address: string; lat: number | null; lon: number | null; createdAt: Date | null; modifiedAt: Date | null; beacons: Relation[]; devices: Relation[]; }