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