import { DpMap } from '@ray-js/tuya-dp-transform'; import { DpState } from '../../../../types'; type CustomRawDpMap = { parser?: (dpValue: string) => any; formatter?: (parsedDpValye: any) => string; }; type EnhancedDpMap = DpMap | CustomRawDpMap; /** * * @param dpStateOrigin 转换前的dpState * @returns 转换后的dpState */ export declare const parseRawDpState: (dpStateOrigin: DpState, entries: [string, EnhancedDpMap][]) => [DpState, DpState]; export {};