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