UNPKG

@voxket-ai/voxket-live

Version:

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

17 lines (16 loc) 562 B
import { ThemeType } from '../styles'; interface WelcomeProps { disabled: boolean; onStartCall: () => void; agentId: string; participantName: string; onAgentIdChange: (value: string) => void; onParticipantNameChange: (value: string) => void; prompts?: string[]; statusMessage?: string; title?: string; subTitle?: string; theme?: ThemeType; } export declare const Welcome: ({ disabled, onStartCall, prompts, statusMessage, title, subTitle, theme, }: WelcomeProps) => import("react/jsx-runtime").JSX.Element; export {};