# ImportStatement

* jsx

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


  <ImportStatement path="string" symbols={Set<ImportedSymbol>} />
  ```

* stc

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


  ImportStatement({
    path: string,
    symbols: Set<ImportedSymbol>,
  }).children(children)
  ```

## Props

|         |                                                    |   |
| ------- | -------------------------------------------------- | - |
| path    | string                                             |   |
| symbols | Set<[ImportedSymbol](../../types/importedsymbol/)> |   |
