import Component from '../../components/checkbox-group/checkbox-group.component.js'; import { type EventName } from '@lit/react'; import type { SlChangeEvent } from '../../events/events.js'; import type { SlInputEvent } from '../../events/events.js'; import type { SlInvalidEvent } from '../../events/events.js'; export type { SlChangeEvent } from '../../events/events.js'; export type { SlInputEvent } from '../../events/events.js'; export type { SlInvalidEvent } from '../../events/events.js'; /** * @summary Checkbox groups are used to group multiple [checkboxes](/components/checkbox) so they function as a single form control. * @documentation https://shoelace.style/components/checkbox-group * @status experimental * @since 2.0 * @pattern stable * @figma ready * * @slot - The default slot where `` elements are placed. * @slot label - The checkbox group's label. Required for proper accessibility. Alternatively, you can use the `label` attribute. * @slot label-tooltip - Used to add text that is displayed in a tooltip next to the label. Alternatively, you can use the `label-tooltip` attribute. * @slot help-text - Text that describes how to use the checkbox group. Alternatively, you can use the `help-text` attribute. * * @event sl-change - Emitted when the checkbox group's selected value changes. * @event sl-input - Emitted when the checkbox group receives user input. * @event sl-invalid - Emitted when the form control has been checked for validity and its constraints aren't satisfied. * * @csspart form-control - The form control that wraps the label, input, and help text. * @csspart form-control-label - The label's wrapper. * @csspart form-control-input - The input's wrapper. * @csspart form-control-help-text - The help text's wrapper. */ declare const reactWrapper: import("@lit/react").ReactWebComponent; onSlInput: EventName; onSlInvalid: EventName; }>; export default reactWrapper;