import Result from "../../models/Result"; export interface UpdateVMSInfoParams { VMSId: string[]; infoType: string; imageUrl: string; text: string; textColor: string; textSize: number; } export interface SetVMSState { VMSId: string[]; } export interface UpdateLEDInfoParams { VMSId: string[]; index: number; state: boolean; imageUrl: string; } declare class VMS { private static get className(); static updateVMSInfo: (params: UpdateVMSInfoParams) => Promise>; static setVMSState: (params: SetVMSState) => Promise>; static updateLEDInfo: (params: UpdateLEDInfoParams[]) => Promise>; } export default VMS;