/** * 查询设备电价 * @param params * @returns */ export declare const getDeviceElectricityPrice: (params: { devId: string; queryParam: { energyType: "electricity"; tariffTag: string; }; }) => Promise<{ id: number; entityId: string; energyType: string; tariffTag: string; tariffName: string; tariffType: string; priceType: 0 | 2; config: string; }[]>; /** * 设置设备电价 * @param params * @returns */ export declare const setDeviceElectricityPrice: (params: { devId: string; tariffInfo: { energyType: "electricity"; tariffTag: string; priceType: 0 | 2; config: Record; }; }) => Promise;