/** * Manager UI routes with server-side rendering * Provides web interface for knowledge base management */ import type { FastifyInstance } from 'fastify'; import type { KnowledgeBaseService } from '../../domains/knowledgebase/knowledgebase.service.js'; import type { SearchService } from '../../domains/search/search.service.js'; import type { IngestionService } from '../../domains/ingestion/ingestion.service.js'; import type { Config } from '../../shared/types/index.js'; /** * Register Manager UI routes */ export declare function registerManagerRoutes(fastify: FastifyInstance, knowledgeBaseService: KnowledgeBaseService, searchService: SearchService, ingestionService: IngestionService, config: Config): Promise; //# sourceMappingURL=manager-routes.d.ts.map