/** * bind-tool-context — mount-time guard for tool-scoped host planes. * * The host-owned baseline, toolState, governance, audit, and entitlement planes * are all keyed by a `tool` string for backward compatibility with the public * ToolCliContext. The mounted command already has an owning Tool, so bind that * ownership into a thin context wrapper and reject accidental or malicious * cross-tool keys before they reach persistence. */ import { type Tool, type ToolCliContext } from '@opensip-cli/core'; export { toolOwnedKeys } from './tool-owned-keys.js'; type BoundToolCliContext = ToolCliContext; export declare function bindToolCliContext(tool: Tool, ctx: ToolCliContext): BoundToolCliContext; //# sourceMappingURL=bind-tool-context.d.ts.map