/** * `forge analyze` — Local analysis entry point. * * Subcommands: * forge analyze [path] [--init] — initialise keys (--init) or run analysis * forge analyze [path] --project — submit analysis to engine * * If --init: initialises the local keypair + ledger directories. * Otherwise: POSTs analysis request to engine, or hints to install forgeos-analysis. */ import { Command } from "commander"; import { ForgeOSClient } from "../../shared/client.js"; export declare function registerAnalyzeCommands(parent: Command, client: ForgeOSClient): void; //# sourceMappingURL=analyze.d.ts.map