No, there is not, but there is a proposal to add this syntax to the language.
Currently, you will need to use
import * as foo from 'bar';
export { foo }; // verbose: { foo as foo }
which is actually even closer to export const foo = require('bar');
than export * as foo from 'bar';
, as it does provide foo
in the local module scope as well.