import type { Components, JSX } from "../types/components";

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