> ## Documentation Index
> Fetch the complete documentation index at: https://docs-dev-docs-event-stream-action-templates.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# ResetPasswordMfaWebAuthnRoamingChallengeUseSecurityKeyOptions

UseSecurityKeyOptions

```ts Example theme={null}
export interface UseSecurityKeyOptions extends CustomOptions {
  /**
   * Optional. If `true`, and if the screen context (`screen.showRememberDevice`)
   * indicates that remembering the device is an option, this signals the user's
   * intent to remember this browser/device for future authentications.
   * The SDK will submit `rememberBrowser=true` in this case.
   * @type {boolean | undefined}
   */
  rememberDevice?: boolean;
}
```

## Properties

<ParamField body="rememberDevice?" type="boolean">
  Optional. If `true` and `screen.showRememberDevice` is also `true`,
  the SDK will include `rememberBrowser=true` in the form submission, indicating the user's
  choice to remember this device.
</ParamField>
