/// export default class ClickableTile { $$prop_def: svelte.JSX.HTMLAttributes & { /** * Set to `true` to click the tile * @default false */ clicked?: boolean; /** * Set to `true` to enable the light variant * @default false */ light?: boolean; /** * Set the `href` */ href?: string; }; $$slot_def: { default: {}; }; $on(eventname: "click", cb: (event: WindowEventMap["click"]) => void): () => void; $on(eventname: "keydown", cb: (event: WindowEventMap["keydown"]) => void): () => void; $on(eventname: "mouseover", cb: (event: WindowEventMap["mouseover"]) => void): () => void; $on(eventname: "mouseenter", cb: (event: WindowEventMap["mouseenter"]) => void): () => void; $on(eventname: "mouseleave", cb: (event: WindowEventMap["mouseleave"]) => void): () => void; $on(eventname: string, cb: (event: Event) => void): () => void; }