/** * `forge evidence` — Evidence management commands. * * Subcommands: * forge evidence submit --project --changeset [--gate ] * --type --content * [--file ] * [--output json] * forge evidence list --project --changeset --gate * [--output json] * forge evidence suggest --tool * [--output json] * * Sprint 2 additions : * `suggest` subcommand maps tool names to evidence types with ready-to-run commands. * All subcommands support `--output json` for agent-friendly structured output. * * additions: * --gate is now optional on submit; omitting routes to the active gate. * --file parses JUnit XML, pytest JSON, or raw text and builds metadata. * iOS tools added to TOOL_EVIDENCE_MAP (xcodebuild, swift test, fastlane scan, swiftlint). * * Offline-first: evidence is saved locally and queued for sync before * attempting remote submission. */ import { Command } from "commander"; import { ForgeOSClient } from "../../shared/client.js"; export declare function registerEvidenceCommands(parent: Command, client: ForgeOSClient): void; //# sourceMappingURL=evidence.d.ts.map