# HelpOverlayProps

Source: /tuil/docs/reference/components/workflow/help-overlay-props
Locale: en

HelpOverlayProps component contract.



{/* Generated by tooling/docs/generate-reference.ts. */}

## Type [#type]

```ts
export interface HelpOverlayProps {
  readonly id?: string;
  readonly open?: boolean;
  readonly defaultOpen?: boolean;
  readonly onOpenChange?: (open: boolean) => void | Promise<void>;
  readonly hotkey?: string;
  readonly title?: string;
}
```

## Members [#members]

| Member         | Type                                                      | Required | Description                                                                                            | Related types |
| -------------- | --------------------------------------------------------- | -------- | ------------------------------------------------------------------------------------------------------ | ------------- |
| `id`           | `string \| undefined`                                     | No       | The `id` member uses the `string \| undefined` contract.                                               | —             |
| `open`         | `boolean \| undefined`                                    | No       | The `open` member uses the `boolean \| undefined` contract.                                            | —             |
| `defaultOpen`  | `boolean \| undefined`                                    | No       | The `defaultOpen` member uses the `boolean \| undefined` contract.                                     | —             |
| `onOpenChange` | `((open: boolean) => void \| Promise<void>) \| undefined` | No       | The `onOpenChange` member uses the `((open: boolean) => void \| Promise<void>) \| undefined` contract. | —             |
| `hotkey`       | `string \| undefined`                                     | No       | The `hotkey` member uses the `string \| undefined` contract.                                           | —             |
| `title`        | `string \| undefined`                                     | No       | The `title` member uses the `string \| undefined` contract.                                            | —             |

## Source [#source]

[View the secondary source reference](https://github.com/mwillbanks/tuil/blob/main/registry/workflows/workflow.tsx)
