Sorry if this is the expected behavior. It looks like when requiring the style helper individually, it has to be imported from the dom-helpers/css route. E.g. the following doesn't work:
import style from 'dom-helpers/style';
Whereas the following examples do work:
import style from 'dom-helpers/css';
import { style } from 'dom-helpers';