/** * Copyright (c) Cisco Systems, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * */ import { LitElement } from "lit"; export declare namespace CheckboxGroup { const ELEMENT_base: typeof LitElement & import("../../mixins/RovingTabIndexMixin").AnyConstructor; export class ELEMENT extends ELEMENT_base { label: string; alignment: "horizontal" | "vertical"; checkboxSlot?: HTMLSlotElement; static get styles(): import("lit").CSSResult[]; connectedCallback(): void; disconnectedCallback(): void; private switchCheckboxOnArrowPress; handleKeyDown(event: KeyboardEvent): void; get slotElement(): HTMLSlotElement | undefined; render(): import("lit-html").TemplateResult<1>; } export {}; } declare global { interface HTMLElementTagNameMap { "md-checkboxgroup": CheckboxGroup.ELEMENT; } }