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