With `esModuleInterop: true` and `module: commonjs`, what runtime helper and guard does `tsc` emit when default-importing a module that uses `export =`?// cjs.ts: declare const f: () => string; export = f; import greet from "./cjs"; greet();