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

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