UNPKG

sycoraxai-voice-assistants

Version:

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

10 lines (9 loc) 386 B
import React, { ReactNode } from 'react'; import { RetellVoiceAssistant } from '../types'; interface RetellProviderProps { voiceAssistant: RetellVoiceAssistant; children: ReactNode; } export declare function RetellProvider({ voiceAssistant, children }: RetellProviderProps): React.JSX.Element; export declare function useRetellVoiceAssistant(): RetellVoiceAssistant; export {};