/** * `agenticros status` - snapshot of which components are running. * * Pulls process info from /tmp/agenticros-*.pid (the same convention the rest * of the CLI uses), pgrep patterns for on-robot hardware helpers, and the * systemd state for the OpenClaw gateway, then prints a coloured table or JSON. */ export interface StatusOptions { json?: boolean; } export declare function statusCommand(opts: StatusOptions): Promise; //# sourceMappingURL=status.d.ts.map