/** * herdctl sessions - List and resume Claude Code sessions for agents * * Commands: * - herdctl sessions List all sessions * - herdctl sessions --agent Sessions for specific agent * - herdctl sessions --verbose Show full resume commands * - herdctl sessions --json JSON output * - herdctl sessions resume [session-id] Resume a session in Claude Code */ export interface SessionsOptions { agent?: string; verbose?: boolean; json?: boolean; state?: string; config?: string; } export interface SessionsResumeOptions { state?: string; config?: string; } /** * List sessions (herdctl sessions) */ export declare function sessionsCommand(options: SessionsOptions): Promise; /** * Resume a session in Claude Code (herdctl sessions resume) * * If no session ID is provided, resumes the most recently active session. */ export declare function sessionsResumeCommand(sessionId: string | undefined, options: SessionsResumeOptions): Promise; //# sourceMappingURL=sessions.d.ts.map