import { DpMap } from '@ray-js/tuya-dp-transform'; import { DpState } from '../../../../types'; type CustomRawDpMap = { parser?: (dpValue: string) => any; formatter?: (parsedDpValue: any) => string; }; type EnhancedDpMap = DpMap | CustomRawDpMap; export declare const formatRawDpState: (dpStateOrigin: DpState, entries: [string, EnhancedDpMap][]) => {}; export {};