/** * herdctl status - Show fleet and agent status * * Commands: * - herdctl status Overview of all agents * - herdctl status Detailed status of specific agent * - herdctl status --json JSON output for scripting */ export interface StatusOptions { json?: boolean; state?: string; config?: string; } /** * Show fleet status (herdctl status) */ export declare function statusCommand(agentName: string | undefined, options: StatusOptions): Promise; //# sourceMappingURL=status.d.ts.map