How can i clean the string in Input() after I press enter?

Hi,
I use a dcc.Input() like this:

dcc.Input(
      id="kaydetInput_",
      type="text",
      placeholder="write 'ok' to save",
      debounce=True,
      n_submit_timestamp=1000
)

And I wanna clean the string I wrote after I press Enter. Is this possible? If it is, how can I do this?

Adding a button that clean the input would be a satisfying option ?

In the callback that handles the action on n_submit, add an Output that updates the input value to be “” or None.