/// export default class HeaderGlobalAction { $$prop_def: svelte.JSX.HTMLAttributes & { /** * Set to `true` to use the active variant * @default false */ isActive?: boolean; /** * Specify the icon to render */ icon?: typeof import("carbon-icons-svelte/lib/Add16").default; /** * Obtain a reference to the HTML button element * @default null */ ref?: null | HTMLButtonElement; }; $$slot_def: { default: {}; }; $on(eventname: "click", cb: (event: WindowEventMap["click"]) => void): () => void; $on(eventname: string, cb: (event: Event) => void): () => void; }