UNPKG

sycoraxai-voice-assistants

Version:

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

8 lines (7 loc) 308 B
import React, { ReactNode } from 'react'; interface RetellSimpleVoiceAssistantProps { onConnectButtonClicked?: () => void; children?: ReactNode; } export declare function RetellSimpleVoiceAssistant({ onConnectButtonClicked, children }: RetellSimpleVoiceAssistantProps): React.JSX.Element; export {};