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