@voxket-ai/voxket-live
Version:
A React widget for embedding Voxket-powered audio/video/chat experiences.
22 lines (21 loc) • 705 B
TypeScript
import { default as React } from 'react';
import { ThemeType } from '../../styles';
import { SessionModality } from '../../types/core';
interface WelcomeProps {
disabled: boolean;
onStartCall: () => void;
onStartChat: () => void;
onStartVideo?: () => void;
agentId: string;
participantName: string;
onAgentIdChange: (value: string) => void;
onParticipantNameChange: (value: string) => void;
prompts?: string[];
statusMessage?: string;
title?: string;
subTitle?: string;
theme?: ThemeType;
modalities?: SessionModality[];
}
export declare const Welcome: React.ForwardRefExoticComponent<WelcomeProps & React.RefAttributes<HTMLDivElement>>;
export {};