import { AllAPIResponses } from './../../../index'; declare type Params = { id: number; key: string; }; declare type Payload = { channelValueOverride?: { channelName: string; timestamp: string; value: any; }; nodeId: number; timestamp?: string; value: any; }; declare const put: (params: Params, payload: Payload) => Promise>; export default put;