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