import type { Components, JSX } from "../types/components";

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