UNPKG

automagik-cli

Version:

Automagik CLI - A powerful command-line interface for interacting with Automagik Hive multi-agent AI systems

13 lines (12 loc) 434 B
import React from 'react'; interface SessionSelectionDialogProps { selectedTarget: { type: 'agent' | 'team' | 'workflow'; id: string; name: string; }; onSelect: (sessionAction: 'new' | 'existing', sessionId?: string) => void; onBack: () => void; } export declare function SessionSelectionDialog({ selectedTarget, onSelect, onBack, }: SessionSelectionDialogProps): React.JSX.Element; export {};