import { ApiClientFactory } from '../core/api.client.factory'; import { SmokeList, SmokeCombinationList, SmokeDetail } from '../model/smokeConfig.model'; export declare class SmokeConfigService { private factory; constructor(factory: ApiClientFactory); loadSmokeList(projectId: string): Promise; loadSmokeCombinationList(projectId: string): Promise; createSmokeCombinstion(projectId: string, deviceIds: string[]): Promise; editSmokeCombinstionName(projectId: string, id: string, name: string): Promise; deleteSmokeCombination(projectId: string, id: string): Promise; loadSmokeDetail(projectId: string, id: string): Promise; }