UNPKG

outsella-widget

Version:

A voice-enabled widget SDK for Outsella assistant

9 lines (8 loc) 259 B
import { AgentWidgetConfig } from '../../apis/agent.api'; import { FC } from 'react'; interface IncomingCallProps { handleAnswer: () => void; config: AgentWidgetConfig; } declare const IncomingCall: FC<IncomingCallProps>; export default IncomingCall;