Fucus on input element in callback

Is it possible to focus on an html.Input element in a callback?

Something like this:

@app.callback(
    Output('some-html-input', 'focus'),
    [
        Input('some-btn', 'n_clicks')
    ]
)
def focus_callback():
    return True

hi, I have the same question! Have you figured it out?