import { Label } from '../../ui/label'; import { SpeechVoiceSelect } from '../../ui/speech-voice-select'; type VoiceSectionProps = { active?: boolean; }; export function VoiceSection({ active = false }: VoiceSectionProps) { return (

Configure text-to-speech settings for voice output.

Choose a preferred text-to-speech voice. "Auto" selects the best available voice on your device.

); }