/** * HTTP API routes for the Fastify server * Provides REST endpoints for knowledge base management and search */ import type { FastifyInstance } from 'fastify'; import type { KnowledgeBaseService } from '../../domains/knowledgebase/knowledgebase.service.js'; import type { SearchService } from '../../domains/search/search.service.js'; /** * Register all API routes */ export declare function registerRoutes(fastify: FastifyInstance, knowledgeBaseService: KnowledgeBaseService, searchService: SearchService): Promise; //# sourceMappingURL=routes.d.ts.map