/// <reference types="node" />
import { Application } from "express";
interface Options {
    cert?: string;
    key?: string;
    app: Application;
}
export default function init({ cert, key, app }: Options): import("http").Server | import("https").Server;
export {};
