import type { Server, ServerOptions } from "node:http"; import type { VextServerConfig } from "../types/app.js"; export declare function hasServerConfig(config?: VextServerConfig): boolean; export declare function createNodeServerOptions(config?: VextServerConfig): ServerOptions; export declare function applyServerConfig(server: Server, config?: VextServerConfig): void;