manage_options capability by default. To grant user access to Forms, you can use the breakdance_form_submission_capability filter to allow user roles access to edit forms.
For example, to allow Editors to access form submissions, add the following code to your site using your preferred Code Snippets plugin.
add_filter("breakdance_form_submission_capability",function()
{
return "edit_posts";
});