type State = {
    param: string;
    topic: string;
    webhook: boolean;
    setHandler: boolean;
};
type Device = {
    paramNames: string[];
    sensors: Record<string, {
        defaultValue: number;
        range: [number, number];
    }>;
    states: Record<string, State>;
};
type DeviceConfig = Record<string, Device>;
export declare const deviceConfig: DeviceConfig;
export {};
