/** * `access_check` — the access preflight tool. * * Read-only and offline. Given an environment, returns every access * gate (config, workspace policy, credentials) at once, each with a * structured remediation, so an agent learns all blockers in one call * instead of one failed call at a time. The thin MCP wrapper over * `checkAccess` (`@/policy/access-check`). */ import type { McpRegistry } from "../registry.js"; export declare const registerAccessCheckTools: (registry: McpRegistry) => void;