I have got a list of entities rendered with a list builder I want to add a Search form above. How can I render my EntityListBuilder manually in a controller so that I can add some form filters above?

I expect this to be something like

return [
'#form' => $form,
'#list_builder' => $list_builder,
];

What is the correct way to do this?