Hello,
If you want to use the tooltip for input, please use the code to register the field, the builder does not support this feature. For example:
[
'name' => __( 'Title', 'your-text-domain' ),
'id' => $prefix . 'title',
'type' => 'text',
'required' => true,
'tooltip_input' => [
'icon' => 'help',
'content' => 'Right position',
'position' => 'right',
],
],