> ## Documentation Index
> Fetch the complete documentation index at: https://docs.renchi.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# VoiceTab

> VoiceTab component

VoiceTab component

## Props

<ResponseField name="config" type="AgentConfig" required={true}>
  config
</ResponseField>

<ResponseField
  name="updateConfig"
  type="<K extends keyof AgentConfig>(
key: K,
value: AgentConfig[K]
) => void"
  required={true}
>
  updateConfig
</ResponseField>

<ResponseField name="errors" type="Record<string, string>" required={true}>
  errors
</ResponseField>

## Usage

```tsx theme={null}
import { VoiceTab } from '@/components/VoiceTab';

export default function Example() {
  return (
    <VoiceTab config={config} updateConfig={updateConfig} errors={errors} />
  );
}
```
