No, this was simply missed in ES6. There is a stage 1 proposal to add these, though, and rollup will consider implementing it.
Until then, you will need to use two declarations and a local binding, altough there's no need to clone the object:
import * as name from 'module';
export { name };