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