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