import http from 'node:http';
import { InferenceServer } from './server.js';
export declare function createOpenAIMiddleware(inferenceServer: InferenceServer): import("express-serve-static-core").Router;
export declare function createExpressMiddleware(inferenceServer: InferenceServer): import("express-serve-static-core").Router;
export declare function createExpressServer(inferenceServer: InferenceServer): http.Server<typeof http.IncomingMessage, typeof http.ServerResponse>;
