import type { Components, JSX } from "../types/components";

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