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