UNPKG

outsella-widget

Version:

A voice-enabled widget SDK for Outsella assistant

15 lines (14 loc) 426 B
import { FC } from 'react'; import { iChoiceProps } from './choice'; declare const LiveKitRoomContent: FC<{ isMuted: boolean; volume: number; callDuration: string; config: iChoiceProps["config"]; onClose: () => void; onChatSelection: () => void; onEndCall: () => void; handleMicrophoneToggle: () => void; handleVolumeChange: (volume: number) => void; }>; export default LiveKitRoomContent;