UNPKG

@voxket-ai/voxket-live

Version:

A React widget for embedding Voxket-powered audio/video/chat experiences.

14 lines (13 loc) 474 B
import { ThemeType } from '../styles'; import { VoxketClient } from '../core/client'; import { DisplayType } from './widget'; interface ChatViewProps { client: VoxketClient; theme?: ThemeType; onBack?: () => void; disabled?: boolean; displayType?: DisplayType; onEndChat?: () => void; } export declare function ChatView({ client, theme, onBack, disabled, displayType, onEndChat, }: ChatViewProps): import("react/jsx-runtime").JSX.Element; export {};