'use client'; import type * as React from 'react'; import { cn } from '@djangocfg/ui-core/lib'; import type { MicDevice } from '../hooks/useMicDevices'; export interface DevicePickerProps { devices: MicDevice[]; value: string | null; onChange: (id: string | null) => void; className?: string; disabled?: boolean; defaultLabel?: string; ariaLabel?: string; } export function DevicePicker({ devices, value, onChange, className, disabled, defaultLabel = 'System default', ariaLabel = 'Microphone', }: DevicePickerProps): React.ReactElement { return ( ); }