// Each part as it's own named export.
export * from './index'

// All combined into a single object as default export.
import * as vis from './index'
export { vis as default }
