---
title: ComboboxContextProps
source: https://github.com/remix-run/remix/blob/main/packages/ui/src/combobox/primitives.tsx#L71
---

# ComboboxContextProps

## Signature

```ts
interface ComboboxContextProps {
  children?: RemixNode
  defaultValue?: string | null
  disabled?: boolean
  name?: string
  ref?: (handle: ComboboxHandle) => void
}

```