automagik-cli
Version:
Automagik CLI - A powerful command-line interface for interacting with Automagik Hive multi-agent AI systems
14 lines (13 loc) • 436 B
TypeScript
import React from 'react';
interface TargetSelectionDialogProps {
targetType: 'agent' | 'team' | 'workflow';
targets: any[];
onSelect: (target: {
type: 'agent' | 'team' | 'workflow';
id: string;
name: string;
}) => void;
onBack: () => void;
}
export declare function TargetSelectionDialog({ targetType, targets, onSelect, onBack, }: TargetSelectionDialogProps): React.JSX.Element;
export {};