@voice-ai-workforce/react
Version:
React components with 3-tier interface modes for voice-controlled workforce applications
15 lines (14 loc) • 597 B
TypeScript
import React from 'react';
import { VoiceAIConfig, VoiceModeProps } from '../../../types/src/types';
import { VoiceAIThemeProps } from '../types/theme';
export interface VoiceSettingsPanelProps extends VoiceAIThemeProps, VoiceModeProps {
config: VoiceAIConfig;
onConfigChange?: (config: Partial<VoiceAIConfig>) => void;
onClose?: () => void;
showAdvanced?: boolean;
showThemeSettings?: boolean;
showAudioSettings?: boolean;
showProviderSettings?: boolean;
}
export declare const VoiceSettingsPanel: React.FC<VoiceSettingsPanelProps>;
export default VoiceSettingsPanel;