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