import http from 'http'; import spdy from 'spdy'; import type { OpenSpeedApp } from '../index.js'; export interface ServerOptions { httpVersion?: 'http1' | 'http2' | 'http3'; ssl?: { key: string; cert: string; }; compression?: boolean; keepAlive?: boolean; keepAliveTimeout?: number; maxConnections?: number; connectionTimeout?: number; } export declare function createNodeServer(app: OpenSpeedApp, options?: ServerOptions): http.Server | spdy.server.Server; //# sourceMappingURL=node.d.ts.map