import { ComponentBase } from "./Component"; export declare class CO2Sensor extends ComponentBase { static SCHEMA: { current_value: NumberConstructor; low_warning_limit: NumberConstructor; high_warning_limit: NumberConstructor; high_danger_limit: NumberConstructor; }; currentValue?: number; lowWarningLimit?: number; highWarningLimit?: number; highDangerLimit?: number; current_value: number; low_warning_limit: number; high_warning_limit: number; high_danger_limit: number; }