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