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