/** * PEAC Policy CLI Commands * * Commands for managing policy files: * - init: Create a new policy file * - validate: Validate policy syntax and schema * - explain: Debug rule matching * - generate: Compile policy to deployment artifacts * - list-profiles: List available policy profiles (v0.9.23+) * - show-profile: Show profile details (v0.9.23+) * * Automation flags (v0.9.23+): * - --json: Machine-readable JSON output * - --yes: Skip confirmation prompts (auto-confirm) * - --strict: Exit non-zero on warnings */ import { Command } from 'commander'; declare const policy: Command; export { policy }; //# sourceMappingURL=policy.d.ts.map