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

# UIOptions Type

> UIOptions type represents the user interface configuration options for the SDK

UIOptions type represents the user interface configuration options for the SDK. The code snippet below shows how to use the `UIOptions` type to create a ui options object.

```js JavaScript theme={"theme":{"light":"github-dark","dark":"material-theme-darker"}}
type UIOptions = {
  showCloseButton?: boolean;
  showCreateEmptyNoteButton?: boolean;
  sectionEditing?: SectionEditingOptions;
  showStartAmbientButton?: boolean;
};
```

## Properties

<Expandable title="properties" defaultOpen="true">
  <ResponseField name="showCloseButton" type="boolean" default="false">
    Whether to show the close button in the SDK header
  </ResponseField>

  <ResponseField name="showCreateEmptyNoteButton" type="boolean" default="false">
    Whether to show the create empty note button in the patient profile
  </ResponseField>

  <ResponseField name="sectionEditing" type="SectionEditingOptions" href="/web-sdk/api-reference/types/section-editing-options" default="all enabled">
    Configuration for section editing features. Defaults to all enabled.
  </ResponseField>

  <ResponseField name="showStartAmbientButton" type="boolean" default="false">
    Whether to show the start ambient button in the patient profile
  </ResponseField>
</Expandable>
