import { type CortexConfig } from '@cortex/core'; import { SQLiteStore, QueryEngine } from '@cortex/graph'; import { Router as LLMRouter } from '@cortex/llm'; export interface ServerOptions { config: CortexConfig; port?: number; host?: string; enableWatch?: boolean; webDistPath?: string; } export interface ServerBundle { store: SQLiteStore; queryEngine: QueryEngine; router: LLMRouter; } export declare function startServer(options: ServerOptions): Promise; //# sourceMappingURL=index.d.ts.map