export interface ALPR { id: string; lat: number; lon: number; tags: Record; type: string; }; export interface LprVendor { id: number; shortName: string; fullName: string; identificationHints?: string; urls: Array<{ url: string }>; logoUrl?: string; osmTags: Record; } export interface OtherSurveillanceDevice { id: number; capabilities?: string; category: string; fov?: number; name: string; osmTags: Record; requiresDirection: boolean; urls: Array<{ url: string }>; }