/** * 获取原始 Matter 色温 `color_temp_control`(卡尔文),避免与标准 `temp_value` 互转时的精度丢失,用于 UI 展示。 * @public * @since 1.15.0 * @example * ```tsx * import React from 'react'; * import { View } from '@ray-js/ray'; * import { createMatterKit } from '@ray-js/panel-sdk'; * * const matterKit = createMatterKit(); * * export default function TempDisplay() { * const originTemp = matterKit.hooks.useOriginMatterTemp(); * return 原始色温: {originTemp}; * } * ``` * @returns {number} 当前 `color_temp_control`;非 Matter 设备为 `0` */ export declare const useOriginMatterTemp: () => number;