The difference is the way it is exported.
export default const myModule = {}
Basically it says "this is the default export". You import this with
import myModule from 'module'
The other way is that multiple entry points can be exported like this:
export const myModule1 = {}
export const myModule2 = {}
You import these with
import {myModule1, myModule2} from 'module'
and if both a default and named entry points are exported you can do this:
import myModule, {myModule1, myModule2} from 'module'
It does not seem completely logical, usually the package author should explain how their module should be imported. If you are the author, this will help you