/** * HTTP query-experience routes (v2.17) * * 8 endpoints: /api/lint, /api/explain, /api/query-history, * /api/templates (GET/POST), /api/templates/:id (GET/DELETE), * /api/templates/:id/execute (POST) */ import type { FastifyInstance } from 'fastify'; import type { QueryAnalyzer } from '../../core/query-analyzer.js'; export declare function setupQueryExperienceRoutes(fastify: FastifyInstance, qa: QueryAnalyzer): Promise; //# sourceMappingURL=query-experience.d.ts.map