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