import { default as React } from 'react'; import { CheckboxGroupProps } from './Checkbox.types'; /** * DS-native replacement for antd's `Checkbox.Group`. Provides a context that child `Checkbox`es read * (checked state + toggle) and emits `onChange` with the checked values ordered by child mount order * (or `options` order). Controlled via `value`, uncontrolled via `defaultValue`. */ declare const CheckboxGroup: ({ value, defaultValue, onChange, options, disabled, name, children, className, style, }: CheckboxGroupProps) => React.JSX.Element; export default CheckboxGroup;