import { ACTION } from "./command/action"; import { baseParamsType, SupportedLanguage } from "./command/baseparams"; import { ICOMMAND, IKeyMaybeValue, IRESPONSE, RESULT } from "./command/icommand"; /** * unused */ export declare class CMDP_UPDATE implements ICOMMAND { action: ACTION; params: baseParamsType & { usrId?: string; usrKey?: string; language?: SupportedLanguage; broadcastData?: string; permanentData?: string; jwtKey?: string; state?: string; }; } /** * Response for CMDP_UPDATE */ export declare class CMDP_UPDATE_RESPONSE extends CMDP_UPDATE implements IRESPONSE { result: RESULT; commands: ICOMMAND[]; values: IKeyMaybeValue; }