@voxket-ai/voxket-live
Version:
A React widget for embedding Voxket-powered audio/video/chat experiences.
12 lines (11 loc) • 489 B
TypeScript
import { ThemeType } from '../../styles';
import { InteractiveUIState } from '../../types/rpc';
interface InteractiveComponentProps {
interaction: InteractiveUIState | null;
theme: ThemeType;
onDismiss?: () => void;
client?: any;
addLocalMessage?: (content: string) => void;
}
export declare function InteractiveComponent({ interaction, theme, onDismiss, client, addLocalMessage }: InteractiveComponentProps): import("react/jsx-runtime").JSX.Element | null;
export {};