/// import http from 'http'; import https from 'https'; import { Dictionary } from '../base'; import { Server } from './base'; export declare class JsonRpcServer extends Server { host?: string; port?: number; serverOptions?: any; remoteCallUrl?: string; servicesList?: Dictionary; sessionMaxAge?: number; privateKeyPath?: string; certificatePath?: string; httpServer?: http.Server; httpsServer?: https.Server; start?: (() => void) | undefined; stop?(): void; }