/** * `agenticros logs [target]` - tail logs from the components we know about. * * Targets: * camera /tmp/agenticros-camera.log (started by start_demo.sh) * mcp /tmp/agenticros-mcp.log (the MCP server) * sim /tmp/agenticros-sim.log (the sim launcher) * eyes /tmp/agenticros-eyes.log (robot face display) * motors /tmp/agenticros-motors.log (start motors helper) * comms /tmp/agenticros-comms.log (cloud connect) * gateway journalctl --user-unit openclaw-gateway.service * * Without a target, prints the list of available log targets. */ export interface LogsOptions { target?: string; follow?: boolean; lines?: string; } export declare function logsCommand(opts: LogsOptions): Promise; //# sourceMappingURL=logs.d.ts.map