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