/**
* The general-purpose CheckboxGroup component.
*
* The CheckboxGroup component is designed to ensure that only one checkbox can be selected at a time within the
* group, simplifying the state management and data handling for forms.
*
* This component will wrap all checkbox in a group and control their check state.
*
* Also extends the props of `
` element.
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/div
*/
export declare const CheckboxGroup: import("react").ForwardRefExoticComponent<{
defaultValues?: (string | number | readonly string[] | undefined)[];
values?: (string | number | readonly string[] | undefined)[];
onChange?: (selectedValue: (string | number | readonly string[] | undefined)[]) => void;
} & Pick & Omit, HTMLDivElement>, "ref">, "onChange"> & import("react").RefAttributes>;