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