/** * CLI: auth command group * * agentlaunch auth wallet [--private-key ] [--save] [--json] * agentlaunch auth status [--json] * * Authenticate with a wallet private key to obtain an Agentverse API key, * or check the status of the current API key. * * Security notes: * - Prefer WALLET_PRIVATE_KEY env var over --private-key flag * - Using --private-key exposes the key in shell history * - Private keys are never logged or displayed */ import { Command } from "commander"; export declare function registerAuthCommand(program: Command): void; //# sourceMappingURL=auth.d.ts.map