import express from 'express'; import { Server } from 'http'; import { PrismApp } from '../app/PrismApp.ts'; import { CorsConfig } from './corsMiddleware.ts'; import { OpenAPIConfig } from './openapi/OpenAPI.ts'; export interface ServerSetupConfig { port: number; app: PrismApp; openapiConfig?: OpenAPIConfig; corsConfig?: CorsConfig; } export declare function createExpressApp(config: ServerSetupConfig): express.Application; export declare function startServer(config: ServerSetupConfig): Promise; //# sourceMappingURL=ExpressAppSetup.d.ts.map