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