/** * `forge sync` - Offline-first sync between local governance store and engine. * * Subcommands: * forge sync - Push pending + pull remote state * forge sync status - Outbox stats and sync metadata * forge sync push - Push only * forge sync pull - Pull only * forge sync conflicts - List unresolved conflicts * forge sync resolve --accept local|remote */ import { Command } from "commander"; import { ForgeOSClient } from "../../shared/client.js"; export declare function registerSyncCommands(parent: Command, client: ForgeOSClient): void; //# sourceMappingURL=sync.d.ts.map