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