> ## Documentation Index
> Fetch the complete documentation index at: https://docs-dev-fix-docs-5546-update-db-search.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# SelectCountryCodeOptions

Options for selecting a country code

```ts Example theme={null}
export interface SelectCountryCodeOptions {
  /** The country code (e.g. 'US', 'GB') */
  country_code: string;
  /** The phone prefix (e.g. '+1', '+44') */
  phone_prefix: string;
  /** Any additional custom options */
  [key: string]: string | number | boolean | undefined;
}
```

## Indexable

\[`key`: `string`]: `string` | `number` | `boolean` | `undefined`

Any additional custom options

## Properties

<ParamField body="country_code" type="string">
  The country code (e.g. 'US', 'GB')
</ParamField>

<ParamField body="phone_prefix" type="string">
  The phone prefix (e.g. '+1', '+44')
</ParamField>
