/** * `scai agents sync` — pull, diff, and push Agentic Studio resources as * declarative recipes. `--kind` selects the resource (agent | skill | * widget | custom-mcp); the recipe / sync model is shared with the other * areas — see docs/recipe-sync-architecture.md. * * pull capture a live resource into a recipe file * diff show the plan to converge a resource onto a recipe * push apply that plan (dry-run unless --allow-write) */ import { Command } from "commander"; /** `scai agents sync` — recipe pull / diff / push for Agentic Studio resources. */ export declare const createAgentsSyncCommand: () => Command;