The type of the `CMultiOptionButton` is probably wrong: ```ts /** * Emitted when the user clicks on this button. */ onClick?: () => {}; ``` Should probably be: ```ts /** * Emitted when the user clicks on this button. */ onClick?: () => void; ```
The type of the
CMultiOptionButtonis probably wrong:Should probably be: