export declare const DEVICE_DEFAULTS: {
    updateInterval: number;
    simulationDuration: number;
    reconnectAttempts: number;
    reconnectDelay: number;
    commandThrottleDelay: number;
    statusCheckDelay: number;
};
export declare const VALIDATION_RANGES: {
    cct: {
        min: number;
        max: number;
    };
    intensity: {
        min: number;
        max: number;
    };
};
export declare const ERROR_MESSAGES: {
    readonly invalidDuration: "Duration must be at least 1 second";
    readonly deviceNotFound: (device: string) => string;
};
//# sourceMappingURL=constants.d.ts.map