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