import { Validatable } from '../validatable.js';
/**
 *
 */
export declare class HumidifierDehumidifierConfiguration implements Validatable {
    type: string;
    humidifierThreshold: number;
    dehumidifierThreshold: number;
    private errorFields;
    readonly fieldNames: { [P in keyof this]?: P | undefined; };
    isValid(prefix: string): [boolean, string[]];
}
