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