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