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

# LoginResponse Type

> Response type for login method

## Type definition

Below is the type definition for the `LoginResponse` type. This is the return type for the `login()` method from the `useAuth` hook. It contains authentication tokens after a successful login.

```tsx theme={"theme":{"light":"github-dark","dark":"material-theme-darker"}}
type LoginResponse = {
  suki_token: string;
  jwt_bearer: string;
};
```
