UNPKG

@voxket-ai/voxket-live

Version:

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

11 lines (10 loc) 509 B
import { default as React } from 'react'; export interface SessionControlsProps { showMicrophoneControl?: boolean; showCameraControl?: boolean; showScreenShareControl?: boolean; showSessionActions?: boolean; customControls?: React.ReactNode; className?: string; } export declare function SessionControls({ showMicrophoneControl, showCameraControl, showScreenShareControl, showSessionActions, customControls, className }: SessionControlsProps): import("react/jsx-runtime").JSX.Element;