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