`foo.d.ts` ``` ts export function foo() { } export function bar() { } ``` `bar.ts` ``` ts import { default as Foo } from "./foo"; ``` Note that the following _does_ work: ``` ts import Foo from "./foo"; ```