/** * SQL file execution route * HTTP equivalent of the MCP `execute_sql_file` tool. * Requires: * - DB_ALLOWED_FILE_PATHS configured server-side * - 'script' permission on the session */ import type { FastifyInstance } from 'fastify'; import { ConnectionManager } from '../../core/connection-manager.js'; export declare function setupSqlFileRoutes(fastify: FastifyInstance, connectionManager: ConnectionManager): Promise; //# sourceMappingURL=sql-file.d.ts.map