# ColumnOptions

> _Since v2.5.0_

Select/typeahead options accepted by `<GridColumn options={...} />`.

Either bare values (label defaults to the value) or `{ label, value }`
pairs. Values and labels are serialized into an attribute, so they must not
contain `,` or `:`.

```ts
type ColumnOptions = string | number[] | { label: string; value: string | number }[]
```
