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