import { ApiClientFactory } from '../core/api.client.factory'; import { Type, CuringChamber, CuringChamberList } from '../model/curingChamber.model'; export declare class CuringChamberService { private factory; constructor(factory: ApiClientFactory); getCuringChamberList(projectId: string, type: Type): Promise; saveCuringChamberInfo(projectId: string, type: Type, data: CuringChamber): Promise; deleteCuringChamberInfo(projectId: string, id: string): Promise; }