UNPKG

sycoraxai-voice-assistants

Version:

A voice assistant package for React applications supporting multiple providers including LiveKit, Retell, and TargetAI

9 lines (8 loc) 318 B
import React, { ReactNode } from 'react'; import { LiveKitVoiceAssistant } from '../types'; interface LiveKitProviderProps { voiceAssistant: LiveKitVoiceAssistant; children: ReactNode; } export declare function LiveKitProvider({ voiceAssistant, children }: LiveKitProviderProps): React.JSX.Element; export {};