UNPKG

@xapp/chat-widget

Version:
11 lines (10 loc) 345 B
import 'rollup-plugin-inject-process-env'; import { FC } from "react"; import { ChatAgents } from "../../store/ChatState"; export interface FailureMessageProps { readonly agents: ChatAgents; readonly text?: string; readonly delay?: number; readonly time?: string; } export declare const FailureMessage: FC<FailureMessageProps>;