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