イベントフォワーディングは DOM イベントでも機能します。
<CustomButton> でのクリックの通知を受け取るためには、CustomButton.svelte にある <button> 要素の click イベントをフォワードする必要があります。
<CustomButton>
CustomButton.svelte
<button>
click
<button on:click> Click me </button>
Next: Bindings