UNPKG

outsella-widget

Version:

A voice-enabled widget SDK for Outsella assistant

11 lines (10 loc) 335 B
import { FC } from 'react'; import { AgentWidgetConfig } from '../../apis/agent.api'; import { WidgetScene } from '../types/widget-scenes'; export interface iChoiceProps { setWidgetStage: (v: WidgetScene) => void; agentId: string; config: AgentWidgetConfig; } declare const Choice: FC<iChoiceProps>; export default Choice;