export declare type Type = 'OXYGEN' | 'CARBONMONOXIDE' | 'HYDROGENSULFIDE' | 'METHANE' | 'AMMONIA' | 'HYDROGEN'; export interface SewageChamber { id?: string; deviceIds: string[]; deviceNames?: string[]; type: string; minValue?: number; maxValue?: number; notification: string; enable: boolean; } export interface CuringChamber { id?: string; deviceIds: string[]; deviceNames?: string[]; type: string; minValue?: number; maxValue?: number; notification: string; enable: boolean; } export interface CuringChamberList extends Array { } export interface SewageChamberList extends Array { }