/** * `forge changeset` — Changeset operations. * * Subcommands: * forge changeset propose --project --description [--modules m1,m2] [--files f1,f2] * forge changeset list --project * forge changeset show --project * forge changeset warnings --project * * Sprint 1 DX : * `propose` auto-detects --branch from `git branch --show-current` and * --files from `git diff --name-only HEAD` when not supplied explicitly. * Detected values are shown as dim hints before submission. * * Offline-first: propose creates a local pipeline from the project's gate * template and queues the changeset for sync. */ import { Command } from "commander"; import { ForgeOSClient } from "../../shared/client.js"; export declare function registerChangesetCommands(parent: Command, client: ForgeOSClient): void; //# sourceMappingURL=changeset.d.ts.map