Hello,
There's no support for that, but a workaround is to use placeholders and replaceTemplateVariableByHTML. Something like:
$html = '<input type="checkbox" checked>';
$docx->replaceTemplateVariableByHTML('CHECK_IS_OPEN', 'inline', $html);
Regards.