import { type Server } from "node:http"; import type { ThemeName } from "./presentation.js"; export interface ServeOptions { theme?: ThemeName; } export declare function servePresentation( rootDir: string, port: number, options?: ServeOptions, ): Promise;