import { ApiClientFactory } from '../core/api.client.factory'; import { IVideoSurveillance, IListCameras } from '../model/videoSurveillance.model'; export declare class VideoSurveillanceService { private factory; constructor(factory: ApiClientFactory); loadVideoSurveillance(projectId: string, widgetTag: string): Promise; loadListCameras(projectId: string): Promise; saveVideoSurveillance(projectId: string, widgetTag: string, data: any): Promise; }