/**
* Copyright IBM Corp. 2016, 2026
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*/
import PropTypes from 'prop-types';
import { type ReactNode } from 'react';
export interface CheckboxGroupProps {
children?: ReactNode;
className?: string;
decorator?: ReactNode;
helperText?: ReactNode;
invalid?: boolean;
invalidText?: ReactNode;
legendId?: ReactNode;
orientation?: 'horizontal' | 'vertical';
legendText: ReactNode;
readOnly?: boolean;
disabled?: boolean;
/**
* * @deprecated please use decorator instead.
* **Experimental**: Provide a `Slug` component to be rendered inside the `Checkbox` component
*/
slug?: ReactNode;
warn?: boolean;
warnText?: ReactNode;
}
export interface CustomType {
size: string;
kind: string;
}
declare const CheckboxGroup: {
({ children, className, decorator, helperText, invalid, invalidText, legendId, legendText, readOnly, disabled, warn, warnText, slug, orientation, ...rest }: CheckboxGroupProps): import("react/jsx-runtime").JSX.Element;
propTypes: {
/**
* Provide the children form elements to be rendered inside of the