@elevenlabs/convai-cli
Version:
CLI tool to manage ElevenLabs conversational AI agents
17 lines • 469 B
TypeScript
import React from 'react';
interface SyncAgent {
name: string;
environment: string;
configPath: string;
status: 'pending' | 'checking' | 'syncing' | 'completed' | 'error' | 'skipped';
message?: string;
agentId?: string;
}
interface SyncViewProps {
agents: SyncAgent[];
dryRun?: boolean;
onComplete?: () => void;
}
export declare const SyncView: React.FC<SyncViewProps>;
export default SyncView;
//# sourceMappingURL=SyncView.d.ts.map