# ImportStatement

* jsx

  ```tsx
  import { ImportStatement } from "@alloy-js/java";


  <ImportStatement name="string" package="string" wildcard />
  ```

* stc

  ```ts
  import { ImportStatement } from "@alloy-js/java/stc";


  ImportStatement({
    name: string,
    package: string,
    wildcard: boolean,
  }).children(children)
  ```

## Props

|          |                  |   |
| -------- | ---------------- | - |
| name     | optional string  |   |
| package  | string           |   |
| wildcard | optional boolean |   |
