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