+++
# -----------------------------------------------------------------------
# Do not edit this file. It is automatically generated by API Documenter.
# -----------------------------------------------------------------------
title = "Token"
keywords = ["grafana","documentation","sdk","@grafana/ui"]
type = "docs"
+++
## Token interface
Signature
```typescript
export interface Token
```
Import
```typescript
import { Token } from '@grafana/ui';
```
Properties
| Property | Type | Description |
| --- | --- | --- |
| [aliases](#aliases-property) | string[]
| |
| [content](#content-property) | string
| |
| [next](#next-property) | Token | null
| |
| [offsets](#offsets-property) | {
start: number;
end: number;
}
| |
| [prev](#prev-property) | Token | null
| |
| [types](#types-property) | string[]
| |
### aliases property
Signature
```typescript
aliases: string[];
```
### content property
Signature
```typescript
content: string;
```
### next property
Signature
```typescript
next?: Token | null;
```
### offsets property
Signature
```typescript
offsets?: {
start: number;
end: number;
};
```
### prev property
Signature
```typescript
prev?: Token | null;
```
### types property
Signature
```typescript
types: string[];
```