declare const httpServerBridge: { start: (port: number, serviceName: any, callback: (data: any) => void) => void; stop: () => void; respond: (requestId: any, code: any, type: any, body: any) => void; }; export default httpServerBridge;