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