# PresetImageItem

## Content

# Type Alias: PresetImageItem

```ts
type PresetImageItem = object;
```

Represents a single preset image item

## Properties

### url

```ts
url: string;
```

URL of the image

***

### label?

```ts
optional label: string;
```

Display label for the image. If not specified, will be derived from the filename.

***

### description?

```ts
optional description: string;
```

Optional description for the image

***

### width?

```ts
optional width: number;
```

Preferred width when inserted. Uses defaultWidth from config if not specified.

***

### height?

```ts
optional height: number;
```

Preferred height when inserted. Uses defaultHeight from config if not specified.

***

### tags?

```ts
optional tags: string[];
```

Optional tags for searching and filtering

***

### aspectRatio?

```ts
optional aspectRatio: string;
```

Optional aspect ratio lock (e.g., "1:1", "16:9", "4:3")
