UNPKG

automagik-cli

Version:

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

10 lines (9 loc) 270 B
import React from 'react'; interface APIKeyConfigDialogProps { currentApiKey?: string; authError?: string; onSubmit: (apiKey: string) => void; onCancel: () => void; } export declare const APIKeyConfigDialog: React.FC<APIKeyConfigDialogProps>; export {};