/** * herdctl logs - Show agent logs * * Commands: * - herdctl logs Recent logs from all agents * - herdctl logs Logs from specific agent * - herdctl logs -f Follow mode (stream new logs) * - herdctl logs -f Follow specific agent * - herdctl logs --job Logs from specific job * - herdctl logs -n 100 Last 100 lines (default: 50) * - herdctl logs --json JSON output for each log entry */ export interface LogsOptions { follow?: boolean; job?: string; lines?: string; json?: boolean; state?: string; config?: string; } /** * Show logs (herdctl logs) */ export declare function logsCommand(agentName: string | undefined, options: LogsOptions): Promise; //# sourceMappingURL=logs.d.ts.map