import { ApiClientFactory } from '../core/api.client.factory'; import { ILaunchingGantryDeviceInfo, ILaunchingGantryDriverInfo, ISaveDriverInfo, ISaveDeviceInfo, ISaveCamerasInfo, IGetCamerasInfo, ILaunchingGantryDynamicDetailInfo } from '../model/launchingGantry.model'; import { CarameList } from '../model/devices.model'; export declare class LaunchingGantryService { private factory; constructor(factory: ApiClientFactory); loadLaunchingGantryDeviceDetailInfo(projectId: string, deviceId: string): Promise; loadLaunchingGantryDriverDetailInfo(projectId: string, deviceId: string): Promise; loadLaunchingGantryDynamicDetailInfo(projectId: string, deviceId: string): Promise; loadLaunchingGantrySaveDriverInfo(projectId: string, deviceId: string, data: ISaveDriverInfo): Promise; loadLaunchingGantrySaveDeviceInfo(projectId: string, deviceId: string, data: ISaveDeviceInfo): Promise; loadLaunchingGantrySaveCamerasInfo(projectId: string, deviceId: string, data: ISaveCamerasInfo[]): Promise; loadLaunchingGantryGetCamerasInfo(projectId: string, deviceId: string): Promise; loadLaunchingGantryDelCameraInfo(projectId: string, deviceId: string, cameraDeviceId: string): Promise; loadLaunchingGantryCaremaDevices(projectId: string): Promise; }