import { BaseCommunicationProtocol, AgentRequestHandler } from '../ICommunication'; export declare class HttpProtocol extends BaseCommunicationProtocol { private server?; private port; private host; constructor(handler: AgentRequestHandler, port?: number, host?: string); start(): Promise; stop(): Promise; }