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