/** * `forge project` — Project management commands. * * Subcommands: * forge project create --name [--description ] [--platform ] * forge project list * forge project show * forge project delete * * Sprint 2 : All subcommands support --output json for agent-friendly output. */ import { Command } from "commander"; import { ForgeOSClient } from "../../shared/client.js"; export declare function registerProjectCommands(parent: Command, client: ForgeOSClient): void; //# sourceMappingURL=project.d.ts.map