/** * Ink Engine Server * * Serves the shared client UI and runs a compiled Ink JSON story through the * unified TurnResult socket protocol. */ import http from 'http'; import { Server as SocketIOServer } from 'socket.io'; declare const app: import("express-serve-static-core").Express; declare const server: http.Server; declare const io: SocketIOServer; export declare function startServer(initialPort: number, range: number): Promise; export { app, server, io };