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