/** * Test Server for AI Interactive Fiction * Simplified version that sends test paragraphs instead of using LLM */ 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 { app, server, io };