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