UNPKG

@botonic/react

Version:

Build Chatbots using React

12 lines (11 loc) 531 B
import { EventAction } from '@botonic/core'; import { DebugEventConfig } from '../types'; export interface HandoffSuccessDebugEvent { action: EventAction.HandoffSuccess; handoff_queue_name: string; handoff_is_queue_open: boolean; handoff_has_auto_assign: boolean; handoff_note_id: string; } export declare const HandoffSuccess: (props: HandoffSuccessDebugEvent) => import("react/jsx-runtime").JSX.Element; export declare const getHandoffSuccessEventConfig: (data: HandoffSuccessDebugEvent) => DebugEventConfig;