/// import type { SvelteComponent } from "svelte"; import type { ButtonProps } from "../Button/Button.svelte"; export interface NotificationActionButtonProps extends ButtonProps {} export default class NotificationActionButton extends SvelteComponent< NotificationActionButtonProps, { click: WindowEventMap["click"]; mouseover: WindowEventMap["mouseover"]; mouseenter: WindowEventMap["mouseenter"]; mouseleave: WindowEventMap["mouseleave"]; }, { default: {} } > {}