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