import { SecureContextOptions } from 'tls'; import { IncomingMessage, Server, ServerOptions, ServerResponse } from 'http'; import { RequestProcessorOptions } from '../options'; export declare function httpServerFactory(requestProcessorOptions: RequestProcessorOptions, options?: SecureContextOptions & ServerOptions): Server;