/** * SEVO CLI — host-agnostic command-line interface (arc42 §5.6). * * Commands: init, create, status, advance, doctor, list, show, config, export, help. * Pure TypeScript, no OpenClaw-specific API dependency. */ import { Command } from 'commander'; export declare function createProgram(): Command; /** Entry point when invoked as CLI binary. */ export declare function run(argv?: string[]): void; //# sourceMappingURL=index.d.ts.map