UNPKG

@voxket-ai/voxket-live

Version:

A React widget for embedding Voxket-powered audio/video/chat experiences.

18 lines (17 loc) 738 B
import { VoxketClient } from '../../core/client'; import { ThemeType } from '../../styles'; interface DeepAnalysisProps { voxketClient: VoxketClient | null; theme: ThemeType; setTheme: (theme: ThemeType) => void; configAgentId: string; configParticipantName: string; className?: string; prompts?: string[]; statusMessage?: string; welcomeTitle?: string; welcomeSubTitle?: string; participantMetadata?: Record<string, any>; } export declare function DeepAnalysis({ voxketClient, theme, setTheme, configAgentId, configParticipantName, className, prompts, statusMessage, welcomeTitle, welcomeSubTitle, participantMetadata }: DeepAnalysisProps): import("react/jsx-runtime").JSX.Element; export {};