import type { MjoCheckbox } from "./mjo-checkbox"; import { LitElement } from "lit"; /** * @summary A container component that groups related mjo-checkbox elements for collective management. * * @slot - Contains one or more mjo-checkbox elements */ export declare class MjoCheckboxGroup extends LitElement { /** @internal Array of child checkbox components managed by this group */ checkboxs: MjoCheckbox[]; render(): import("lit-html").TemplateResult<1>; /** * Adds a checkbox to this group if it's not already present. * @param checkbox - The mjo-checkbox element to add to the group * @internal This method is called automatically by child checkboxes */ pushCheckbox(checkbox: MjoCheckbox): void; } declare global { interface HTMLElementTagNameMap { "mjo-checkbox-group": MjoCheckboxGroup; } } //# sourceMappingURL=mjo-checkbox-group.d.ts.map