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