/// export interface ButtonWithCountProps extends svelte.JSX.HTMLAttributes { /** * @default "#" */ href?: string; /** * @default 0 */ count?: number; /** * @default "#" */ countHref?: string; } export default class ButtonWithCount { $$prop_def: ButtonWithCountProps; $$slot_def: { default: {}; }; $on(eventname: "click", cb: (event: WindowEventMap["click"]) => void): () => void; $on(eventname: "click:count", cb: (event: CustomEvent) => void): () => void; $on(eventname: string, cb: (event: Event) => void): () => void; }