dmux
Version: 
Tmux pane manager with AI agent integration for parallel development workflows
13 lines • 425 B
TypeScript
import React from 'react';
import type { DmuxPane } from '../types.js';
import type { AgentStatusMap } from '../hooks/useAgentStatus.js';
interface PanesGridProps {
    panes: DmuxPane[];
    selectedIndex: number;
    isLoading: boolean;
    showNewPaneDialog: boolean;
    agentStatuses?: AgentStatusMap;
}
declare const PanesGrid: React.FC<PanesGridProps>;
export default PanesGrid;
//# sourceMappingURL=PanesGrid.d.ts.map