import { KottsterApp } from "../core/app"; import { KottsterServer } from "../core/server"; interface KottsterServerOptions { app: KottsterApp; } /** * Create a server * @param options - The options for the server including the app instance. */ export declare function createServer(options: KottsterServerOptions): Promise; export {};