/** * Escalation tools — mirrors routes/escalations/ * * Every tool runs as the `lt-system` bot. The escalation RBAC helpers * (getVisibleRoles / getUserRoles / hasGlobalEscalationAccess) query a uuid * column, so the bot's external_id string ('lt-system') would blow up with * `invalid input syntax for type uuid`. `systemAuth()` resolves the bot's real * UUID once and caches it; that UUID (a superadmin) is passed as the principal. */ import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; export declare function registerEscalationTools(server: McpServer): void;