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