import { ApiClientFactory } from '../core/api.client.factory'; import { AlarmAnalysisData, ICurrentAlarmDeviceParams } from '../model/projectBrain.model'; import { IProblemDetails } from '../../definition/model/qualitySafety.model'; export declare class ProjectBrainService { private factory; constructor(factory: ApiClientFactory); getDeviceTypeList(projectId: string): Promise; getAlarmAnalysisData(projectId: string, deviceType: String): Promise; getCurrentAlarmDeviceList(projectId: string, params: ICurrentAlarmDeviceParams): Promise; getSafetyOverview(projectId: string): Promise; getSafetyOverviewDetail(projectId: string): Promise; getQualityOverview(projectId: string): Promise; getQualitysOverviewDetail(projectId: string): Promise; getTechnologyGlance(projectId: string): Promise; loadSetingStandard(projectId: string, schemePassRate?: number, blueImplementedRate?: number): Promise; loadGetStandardValue(projectId: string): Promise; loadGetFactorsValue(projectId: string): Promise; loadGetCompleteInfos(projectId: string): Promise; getAlarmDeviceType(projectId: string): Promise; getVoice(projectId: string): Promise; setVoice(projectId: string, status: string): Promise; getAlarmVoice(projectId: string, deviceType: any): Promise; getQualityDetails(projectId: string, type: string): Promise; getSafetyDetails(projectId: string, type: string): Promise; getDeviceAlarmData(projectId: string, type: string, params: any): Promise; }