import https from 'https';
import express from 'express';
import type { ServerBootParams } from './types';
declare function createHTTPServer(params: ServerBootParams): Promise<express.Express | https.Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse>>;
export default createHTTPServer;
