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