automagik-cli
Version:
Automagik CLI - A powerful command-line interface for interacting with Automagik Hive multi-agent AI systems
13 lines (12 loc) • 414 B
TypeScript
import React from 'react';
interface SessionSelectionDialogProps {
selectedTarget: {
type: 'agent' | 'team' | 'workflow';
id: string;
name: string;
};
onSelect: (sessionAction: 'new' | 'existing') => void;
onBack: () => void;
}
export declare function SessionSelectionDialog({ selectedTarget, onSelect, onBack, }: SessionSelectionDialogProps): React.JSX.Element;
export {};