/** * `scai policy …` — inspect and manage the workspace environment-policy * guardrails. See docs/policy-and-guardrails.md. * * The workspace policy is an operator-owned, deny-by-default allowlist of * the Sitecore environments scai may operate against. It is normally * auto-populated (`scai setup login`, `scai mcp serve`); these commands * are for inspecting it and for the deliberate acts — enrolling a second * environment, re-pinning after a legitimate tenant change, revoking one. * * These commands deliberately read the config directly rather than going * through `resolveEnvironment`: they run before/around enrollment and * must not trip the very gate they manage. */ import { Command } from "commander"; export declare const createPolicyCommand: () => Command;