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