/** * Tmux session management tool for multi-agent genetic development */ import { BaseTool } from './base'; import type { ToolResult } from '../types'; export interface TmuxParams { action: 'new' | 'list' | 'send' | 'kill' | 'attach' | 'detach' | 'status'; sessionName?: string; command?: string; window?: string; pane?: string; } /** * Tool for managing tmux sessions for multi-agent development */ export declare class TmuxTool extends BaseTool { constructor(); validateParams(params: Record): boolean; execute(params: Record): Promise; getParameterSchema(): Record; getUsageExamples(): string[]; /** * Create a coordinated multi-agent setup */ createMultiAgentEnvironment(agents: string[]): Promise; /** * Send command to all agents */ broadcastToAgents(agents: string[], command: string): Promise; } //# sourceMappingURL=tmux.d.ts.map