Use panel.indicators.Progress in a bokeh application

I have a large-scale bokeh application and would like to integrate the panel.indicator.Progress object. Have tried the following -

from bokeh.layouts import column
import panel as pn
pn.extension()
progress = pn.indicators.Progress()
layout = column(progress)

and received

ValueError: Only LayoutDOM items can be inserted into a column. Tried to insert: Progress() of type <class 'panel.widgets.indicators.Progress'>

So is there any simple way to integrate the Progress object in an existing bokeh application? Thank you!

Not easily, but doable; something like this

Add support for popups on selection streams by philippjfr · Pull Request #6168 · holoviz/holoviews (github.com)

Panel is a bokeh object in this case.
Add support for popups on selection streams by philippjfr · Pull Request #6168 · holoviz/holoviews (github.com)