foo.ts : ```typescript export interface Foo {} ``` index.svelte : ```svelte <script lang=typescript> import { Foo } from '.../foo' </script> ``` result: ``` Non-existent export 'Foo' is imported from '.../foo.ts' ``` Is there a way to make this work ?