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