import type { Server } from 'node:http'; import type { RateLimiterOptions } from '../utils/rate-limiter.js'; export interface HttpServerOptions { port?: number; host?: string; path?: string; rateLimit?: RateLimiterOptions; } export declare function startHttpServer(options?: HttpServerOptions): Promise;