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