import http from "http";
import { Express } from "express";
export interface StartResponse {
    host?: string;
    port?: number;
    app: Express;
    server: http.Server<typeof http.IncomingMessage, typeof http.ServerResponse>;
}
export declare function startServer(): Promise<StartResponse>;
