import { type Server as HttpServer } from "node:http"; declare module "hono" { interface ContextVariableMap { parsedBody?: unknown; } } export interface HttpServerConfig { host: string; port: number; path: string; allowedHosts: string[]; allowedOrigins: string[]; } export interface HttpServerHandle { server: HttpServer; close(): Promise; } export declare function startHttpServer(config: HttpServerConfig): Promise;