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