import type { Components, JSX } from "../types/components"; interface TaskbarActionsButton extends Components.TaskbarActionsButton, HTMLElement {} export const TaskbarActionsButton: { prototype: TaskbarActionsButton; new (): TaskbarActionsButton; }; /** * Used to define this component and all nested components recursively. */ export const defineCustomElement: () => void;