UNPKG

@voxket-ai/voxket-live

Version:

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

9 lines (8 loc) 351 B
import { ReactNode } from 'react'; export interface SessionContentProps { showChat?: boolean; showTranscriptions?: boolean; customContent?: ReactNode; className?: string; } export declare function SessionContent({ showChat, showTranscriptions, customContent, className }: SessionContentProps): import("react/jsx-runtime").JSX.Element;