automagik-cli
Version:
Automagik CLI - A powerful command-line interface for interacting with Automagik Hive multi-agent AI systems
12 lines (11 loc) • 360 B
TypeScript
import React from 'react';
interface TargetTypeDialogProps {
onSelect: (targetType: 'agent' | 'team' | 'workflow') => void;
availableTargets: {
agents: any[];
teams: any[];
workflows: any[];
};
}
export declare function TargetTypeDialog({ onSelect, availableTargets, }: TargetTypeDialogProps): React.JSX.Element;
export {};