@voxket-ai/voxket-live 1.0.122 → 1.0.124

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -17,4 +17,26 @@ interface SessionViewProps {
17
17
  onBack?: () => void;
18
18
  }
19
19
  export declare const SessionView: React.ForwardRefExoticComponent<SessionViewProps & React.RefAttributes<HTMLElement>>;
20
- export {};
20
+ /**
21
+ * VoiceControlPanel Component - Custom Control Panel for Voice Sessions
22
+ *
23
+ * This component provides a sleek, full-width control panel similar to chat-view's input panel,
24
+ * with attachment buttons on the left, voice controls in the center, and end call on the right.
25
+ */
26
+ interface VoiceControlPanelProps {
27
+ capabilities: {
28
+ suportsChatInput: boolean;
29
+ suportsVideoInput: boolean;
30
+ suportsScreenShare: boolean;
31
+ };
32
+ onSendMessage?: (message: string) => Promise<void>;
33
+ onSendAttachments?: (files: File[]) => void;
34
+ onEndCall?: () => void;
35
+ onChatOpenChange?: (open: boolean) => void;
36
+ disabled?: boolean;
37
+ theme: ThemeType;
38
+ client?: any;
39
+ sessionStarted?: boolean;
40
+ }
41
+ declare function VoiceControlPanel({ capabilities, onSendMessage, onSendAttachments, onEndCall, onChatOpenChange, disabled, theme, client, sessionStarted }: VoiceControlPanelProps): import("react/jsx-runtime").JSX.Element;
42
+ export { VoiceControlPanel };