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

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