import { MsgBase, MsgType } from './MsgBase'; export declare class CmdMsg extends MsgBase { type: MsgType; msg: string; action: string; static createMsg(baseMsg: Partial): CmdMsg; }