/** * 照明新版标准 DP Code 常量映射表 * @public * @since @ray-js/panel-sdk 1.0.0 * @remarks 定义了照明设备面板中常用的标准 DP Code,包括开关、工作模式、亮度、色温、彩光等功能点。 * @example 基础用法 * ```ts * import { utils } from '@ray-js/panel-sdk'; * * const { lampStandardDpCodes } = utils; * * console.log(lampStandardDpCodes.switchLedCode); // 'switch_led' * console.log(lampStandardDpCodes.workModeCode); // 'work_mode' * console.log(lampStandardDpCodes.brightCode); // 'bright_value' * ``` */ export declare const lampStandardDpCodes: { switchLedCode: string; workModeCode: string; brightCode: string; tempCode: string; colourCode: string; controlCode: string; countdownCode: string; rtcTimerCode: string; musicDataCode: string; micMusicCode: string; paintColourCode: string; rhythmModeCode: string; };