import { SbbCheckboxPanelElement } from '../checkbox-panel.ts'; import { SbbCheckboxElement } from '../checkbox.ts'; import { SbbSelectionGroupBaseElement } from '../core/base-elements.ts'; /** * It can be used as a container for checkbox elements. * * @slot - Use the unnamed slot to add `sbb-checkbox`, `sbb-checkbox-panel`, `sbb-selection-action-panel` * and `sbb-selection-expansion-panel` elements to the `sbb-checkbox-group`. * @slot error - Slot used to render a `sbb-error` inside the `sbb-checkbox-group`. */ export declare class SbbCheckboxGroupElement extends SbbSelectionGroupBaseElement { static readonly elementName: string; protected selectionElementSelectors: string; protected panelElementSelector: string; /** List of contained checkbox elements. */ get checkboxes(): (SbbCheckboxElement | SbbCheckboxPanelElement)[]; constructor(); private _handleKeyDown; } declare global { interface HTMLElementTagNameMap { 'sbb-checkbox-group': SbbCheckboxGroupElement; } } //# sourceMappingURL=checkbox-group.component.d.ts.map