---
title: imports
url: /docs/esc/environments/syntax/builtin-properties/imports/
---
The `imports` built-in property provides access to imported environments. This allows the selective use of values from imported environments, including those that are imported without participating in the merge stack.

## Properties

| Property | Type | Description                                                       |
|----------|------|-------------------------------------------------------------------|
| import   | any  | The imported environment to access

## Example

```yaml
imports:
  - app/dev: { merge: false }
values:
  other: Hello, ${imports["app/dev"].name}!
```

### Evaluated result

```json
{
  "greeting": "Hello, My App!"
}
```

