export interface CommandPortConfig { host: string; port: number; } export interface ProcessRequestCallback { (err: Error | null, response: string): void; } export declare class CommandPort { private evH; constructor(evH: any, config: CommandPortConfig); processRequest(message: string, callback: ProcessRequestCallback): void; }