@voxket-ai/voxket-live
Version:
A React widget for embedding Voxket-powered audio/video/chat experiences.
9 lines (8 loc) • 351 B
TypeScript
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;