import type { Components, JSX } from "../types/components";

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