/** * `forge gate` — Gate management commands. * * Subcommands: * forge gate status --project * forge gate promote --project * forge gate reject --project --reason * forge gate skip --project [--reason ] * forge gate check --project * forge gate recommend --project * forge gate presets * * Offline-first: all mutations write locally first, queue for sync, * then attempt remote as best-effort. */ import { Command } from "commander"; import { ForgeOSClient } from "../../shared/client.js"; export declare function registerGateCommands(parent: Command, client: ForgeOSClient): void; //# sourceMappingURL=gate.d.ts.map