> ## 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.

# RegistrationResponse Type

> Response type for registerUser method

## Type definition

Below is the type definition for the `RegistrationResponse` type. This is the return type for the `registerUser()` method from the `useAuth` hook. It returns an empty object `{}` when successful. After successful registration, you can sign the user in using the `login()` function.

```tsx theme={"theme":{"light":"github-dark","dark":"material-theme-darker"}}
type RegistrationResponse = Record<string, never>;
```
